@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:wght@100;300;400;500;900&family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');

html {
    font-family: "Montserrat", "Alegreya", "sans-serif";
    font-size: 16px;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-image: url("images/Dark_Sand_Waves.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #08090aff;
    background-attachment: fixed;
    height: 100%;
}



/* Menu ------------------------------------------------------------------- */

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 80px;
    background-color: rgba(26, 26, 26, 0.452);
    backdrop-filter: blur(5px);
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.5);
    z-index: 9;
    position: fixed;
    top: 0;
    width: 100%;
}

.menu {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* position: fixed;
    z-index: 10; */
}

nav a {
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #DFE2E5;
    font-weight: 300;
    font-size: 1.3rem;
    text-transform: uppercase;
}

nav a:hover {
    background-color: rgba(19, 19, 19, 0.75);
    color: #ffffff;
}

nav .home-link {
    margin-right: auto;
}

#sidebar-active {
    display: none;
}

.open-sidebar-button, .close-sidebar-button {
    display: none;
}

@media(max-width: 700px) {
    .menu{
        flex-direction: column;
        align-items: flex-start;

        position: fixed;
        z-index: 10;
        top: 0;
        right: -300px;
        overflow: hidden;
        width: 300px;
        height: fit-content;
        background-color: rgba(26, 26, 26, 0.8);
        backdrop-filter: blur(5px);
        box-sizing: -5px 0 5px black;

        transition: 0.3s ease-out;
    }

    nav a{
        box-sizing: border-box;
        height: auto;
        width: 100%;
        padding: 20px 30px;
        justify-content: flex-start;
    }

    .open-sidebar-button, .close-sidebar-button {
        display: block;
        padding: 20px;
    }

    #sidebar-active:checked ~ .menu {
        right: 0;
    }
}

/* Main Section -------------- */

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.title {
    font-family: "Montserrat", "Alegreya", "sans-serif";
    font-weight: 300;
    font-size: 1.3rem;
    color: #DFE2E5;
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(20px);
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.50);
    margin-top: 100px;
    border-width: 1px 0 1px 0;
    border-style: solid;
    border-color: rgba(64, 64, 64, 0.5);
}

.itch-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 80%
}

@media(max-width: 1450px) {
    .itch-container {
        width: 100%
    }
}

@media(min-width: 1919px) {
    html {
        font-size: 18px;
    }
    .itch {
        width: 700px;
    }
    
}
@media(min-width: 2559px) {
    html {
        font-size: 20px;
    }  
}

.itch {
    border-radius: 0.5rem;
    min-width: 552;
    margin: 0.5rem;
    box-shadow: 0px 0px 13px 5px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.asset-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Montserrat", "Alegreya", "sans-serif";
    font-weight: 200;
    font-size: 1rem;
    color: #DFE2E5;
    text-decoration: none;
    width: fit-content;
    box-sizing: border-box;
    border-radius: 1rem;
    background-color: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(20px);
    border-width: 1px 0 1px 0;
    border-style: solid;
    border-color: rgba(64, 64, 64, 0.5);
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.35);
}

.asset-description p{
    margin-left: 2rem;
    margin-right: 2rem;
}
.asset-description a {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.asset-description a:hover {
    color: #afbfd2ff;
}

hr {
    border: none;
    height: 1px;
    width: 50%;
    background-color: rgba(255, 255, 255, 0.356);
}



/* Footer ------------------------------------------- */

/* footer {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    bottom: 0;
    background-color: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(20px);
    border-width: 1px 0 1px 0;
    border-style: solid;
    border-color: rgba(64, 64, 64, 0.5);
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.35);
}

.footer-links {
    font-family: "Montserrat", "Alegreya", "sans-serif";
    font-weight: 200;
    font-size: 1rem;
    color: #DFE2E5;
    text-decoration: none;
} */