html {
    margin: 0 auto;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    font-size: 20px;
    padding: 0;
    margin: 0;
    background-color: black;
    color: white;
}

#wrapper {
    margin: 0 auto;
    min-height: 100vh;
    width: 100%;
    background-color: #1f1f1f;
}

#header {
    background-color: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(50px);
    max-width: 100%;
    display: flex;
    flex-direction: row;
    padding: 10px;
    max-height: 30px;
    top: 0;
    position: sticky;
    z-index: 100;
}

#header-left {
    flex: 1;
}

#header-left img {
    max-height: 100%;
}

#header-right {
    flex: 1;
}

#header-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    min-height: 100%;
    align-items: center;
}

#header-links li a {
    padding-left: 20px;
    color: #45F1C6;
}

#header-links a.selected {
    text-decoration: underline;
}

#header-links a.selected:hover {
    text-decoration: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#content {
}

#backdrop {
    position: fixed;
    min-width: 100vw;
    min-height: 100vh;
    background: url('/images/GlimpsePreview.png');
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    z-index: 1;
}

#index-content {
    position: absolute;
    z-index: 50;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translate(0%, -50%);
}

#index-text {
    font-size: 50px;
}

#index-buttons {
    margin: 0 auto;
    margin-top: 50px;
    flex-direction: row;
    max-width: 1000px;
}

@media screen and (max-width: 550px) {
    #index-buttons {
        flex-direction: column;
    }
}

.index-button-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 250px;
    margin: 0 auto;
}

.index-button-wrapper img {
    margin: 0 auto;
    margin-bottom: 25px;
}


.index-button {
    flex: 1;
    padding: 10px 50px;
    color: white;
    max-height: 50px;
    background-color: #3BA8DF;
    border-radius: 10px;
    margin-bottom: 10px;
}

.index-button:hover {
    text-decoration: none;
    background-color: #5BC8FF;
}
