html {
    background: black;
    background-image: url(background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: sans-serif;
    color: white;
    text-align: center;
    font-size: 20px;
}

html,
body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    /* justify-content: center; */
    /* align-items: center; */
}

.dropshadow {
    filter: drop-shadow(0px 0px 5px black);
}

#container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

#title {
    font-size: 40px;
    font-weight: bold;
    max-width: 300px;
}
#title img {
    width: 100%;
}

#content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

#textbody {
    padding-bottom: 20px;
}

#links {
    display: flex;
    gap: 20px;
}

#links a,
#links a:visited {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    background: #222;
    padding: 10px;
    border: 1px solid white;
    border-radius: 5px;
    height: 32px;
}

#topbar {
    padding: 10px;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    width: calc(100% - 20px);
    z-index: 1;
}

#topbar a,
#topbar a img {
    height: 100%;
    width: auto;
}

#page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: 90px;
}

#page-content {
    text-align: left;
    width: 90%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

#page-content h1 {
    margin: 0;
}
