html {
    min-height: 100vh;
    display: flex;
}

body {
    flex: 1;
    margin: 10px 10px 0px 10px;
    background-color: #1f1f1f;
    display: flex;
    flex-direction: column;
}

#main {
    flex: 1;
    color: white;
    padding-left: 20px;
    padding-right: 20px
}
#main a {
    text-decoration-color: #2de5df;
    text-underline-offset: 2px;
    color: #2de5df;
}

#header {
    border-bottom: 3px solid white;
    display: flex;
    gap: 20px;
    align-items: baseline;
    justify-content: space-between;
}

#header * {
    text-decoration: none;
    color: white;
}

#header .website_name {
    font-size: 30px;
}

#header .pages {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

#_88x31buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-left: 15%;
    margin-right: 15%;
}

._88x31button {
    width: 88px;
    height: 31px;
    background-color: white;
    image-rendering: pixelated;
}

#footer {
    border-top: 3px solid white;
    padding-top: 3px;
    padding-bottom: 3px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3px;
}

#webring {
    margin-top: 4px;
}

#webring a {
    text-decoration: none;
    color: #2de5df;
}

.verticalSeparator {
    background-color: #888888;
    min-width: 1px;
    min-height: 27px;
    margin-left: 5px;
    margin-right: 5px;
}

.dropdown {
    background-color: #121212;
    padding: 10px; 
    overflow: hidden;
    border-radius: 10px;
}

.dropdown .content {
    display: none;
}

.dropdown:hover {
    animation: dropdown-expand 1s ease-out forwards;
}

.dropdown:hover .content {
    display: block;
}

@keyframes dropdown-expand {
    0% {
        max-height: 30px;
    }
    100%{
        max-height: 100px;
    }
}

pre .sourceCode {
    background-color: #111;
    border-radius: 10px;
    line-height: 20px;
    padding: 5px;
    width: 100%;
}

code {
    background-color: #111;
    border-radius: 10px;
    padding: 5px;
    display: inline-block;
}
