body{
    margin: 0px;
    background-image: url(Media/Background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
}
img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1vh;
    max-width: 40vw;
}
@media all and (max-width: 500px){
    img{
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1vh;
        max-width: 97vw;
    }
}
body a{
    margin: 0%;
}
/* copy and paste static nav START*/
nav{
    position:fixed;
    height: 100%;
    width: clamp(10vw);
    right: 0vw;
    text-align: center;
}
.open-sidebar-button{
    display: block;
}
.close-sidebar-button{
    display: none;
}
#sidebar-active{
    display: none;
}
.page-container{
    position: relative;
    height: 100%;
    right: -100vw;
    display: flex;
    flex-direction: column;
    z-index: 10;
    transition: 0.5s ease-out;
    font-family: "alagard";
    font-size: 20px;
}
nav a:link, a:visited{
    padding: 10px;
    text-decoration: none;
    color: #ec4444;
}
nav a:hover{
    backdrop-filter: blur(3px);
    background-color: rgba(130, 26, 26, 0.5);
}
#sidebar-active:checked ~ .page-container{
    right: 0vw;
}
.home-icon{
    width: 100px;
    padding: 20px;
}
/* copy and paste static nav END*/