@font-face {
    font-family: NotJamBlkltr16;
    src: url(fonts/NotJamBlkltr16.ttf);
}

p {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    font-size: 16px;
    font-weight: 400;
}

a {
    font-weight: 700;
    text-decoration: none;
    color: #BC4A9B;
}

footer {
    margin-top: auto;
}

h1 {
    font-family: NotJamBlkltr16;
    color: white;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: black;
}

.main-content {
    flex: 1; /* This makes the main content grow to fill the available space */
}

.link-button {
    width: 128px; display: inline; float: left;
    padding-left: 32px; padding-right: 32px;
    transition: transform 0.1s ease;
}

.link-button:hover {
  transform: scale(1.2);
}

.link-button-text {
    text-align: center;
    position: relative;
    top: -64px;
    cursor: pointer;
}

.hidden {
    display: none;
}
