:root {
    --sidebar-width: 200px;
}

#sidebar {
    position: fixed;
    top: 0px;
    left: 0px;

    width: var(--sidebar-width);
    height: 100%;

    z-index: 5;

    border-right: 1px solid #981d07;
    background-color: black;
}

#sidebarLogo {
    max-width:100%;
    max-height:100%;

    padding-top: 14px;
    opacity: 0%;
}

#sidebarLogo.animate {
    animation-name: showLogo;
    animation-timing-function: ease-out;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes showLogo {
    0%   {opacity: 0%;}
    100% {opacity: 100%;}
}

#sidebarServices {
    place-items: center;
    
    padding-top: 20px;

    text-transform: uppercase;
    font-family: monospace;
    font-size: 17px;
}

a:link, a:visited {
    color: lightblue;
}

a:hover {
    color: lightcyan;
}

a:active {
    color:lightskyblue;
}

body {
    font-family: sans-serif;
    color: white;
    background: black;
}

#wrapper {
    display: flex;
    flex-direction: column;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    position: absolute;
    top: 0px;
    right: 0px;

    width: calc(100% - var(--sidebar-width) + 1px);

}

#mainContent {
    width: 80%;
    text-align: center;
    justify-items: center;
}

.goldenText {
    font-size: 25px;
    color: gold;
}

.marginBottom {
    margin-block-end: 0px;
}

.marginTop {
    margin-block-start: 3px;
}

footer {
    position: relative;
    right: 0px; 

    width: 100%;

    text-align: center;
    border-top: 1px solid #981d07;

    margin-top: 50px;
    margin-bottom: 8px;

}

ul {
    text-align: left;
}

#titleBox {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#showMenuMobile {
    position: absolute;
    left: 25px;

    display: none;
    font-size: 40px;
}

#titleText {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    #showMenuMobile {
        display: block;
    }
    #sidebar {
        display: none;
    }
    main {
        width: calc(100%);
    }
}

@media (max-width: 370px) {
    #goldenText {
        font-size: 20px;
    }
}

iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

.iconSize {
    margin-top: 5px;

    max-width: 50px;
    max-height: 50px;
}