:root {
    --home-width: clamp(70%, 1000px, 85vw);
}




/* === MAIN / NAVBAR === */





body {
    margin: 0;
    background: url('../../bg/greenrust.png');
    font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

body::-webkit-scrollbar{
    display: none;
}

h1 {
    color: #3dff00;
}

nav {
    background: url('nav-bg.jpg') repeat;
    width: 100vw;
    height: 70px;
}

nav > .wrap {
    display: flex;
    width: clamp(30%, 860px, 100%);
    height: 100%;
    justify-content: space-around;
    align-items: center;
    margin: auto;
}

nav > .wrap > a {
    text-decoration: none;
}

.tba:before {
    content: "TBA";
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background: black;
    width: 100px;
    position: absolute;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
}

.tba:hover:before {
    opacity: 1;
    visibility: visible;
    transition: 0s;
}


/* MAIN / NAVBAR MEDIA QUERIES */


@media (max-width: 800px) {
    nav {
        height: 160px;
    }
    nav > .wrap {
        flex-wrap: wrap;
    }
    nav > .wrap > a {
        width: 100vw;
        text-align: center;
    }
    nav > .wrap > a > img {
        min-height: 50px;
        margin-top: 5px;
        margin-bottom: 10px;
    }
    .link {
        background: #3cff0070;
    }
}

@media (max-width: 500px) {
    nav {
        background-size: 434px;
    }
}





/* === HOMEPAGE === */





#disc {
    width: calc(var(--home-width) - 10%);
    border: 3px solid #ff2b2b;
    border-radius: 25px;
    padding: 10px;
    background-color: #be282852;
    margin: auto;
    margin-block: 30px;
}

#disc > h1 {
    color: #ff2b2b;
}

#one {
    width: var(--home-width);
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 25px;
    margin: auto;
    margin-top: 30px;
}

#one > div {
    border: 3px solid #3dff00;
    border-radius: 25px;
    padding: 10px;
    background-color: #3cff0052;
    grid-column: 1 / span 2;
}

#two {
    width: var(--home-width);
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 25px;
    margin: auto;
}

#two > div {
    border: 3px solid #3dff00;
    border-radius: 25px;
    padding: 10px;
    background-color: #3cff0052;
}





/* === REVIEW PAGE === */





.select {
    width: clamp(70%, 1000px, 90%);
    display: grid;
    grid-template-columns: repeat(8, auto);
    margin: auto;
    margin-top: 30px;
    gap: 5px;
}

.select > img {
    width: 100%;
    border: 3px solid rgba(255, 255, 255, 0);
    transition: .2s;
    grid-row: span 2;
}

.select > img:hover {
    border: 3px solid #3dff00;
    transition: 0s;
}

.exp {
    width: 100%;
    grid-column: 1 / 9;
    border: 3px solid #3dff00;
    border-radius: 25px;
    padding: 10px;
    background-color: #3cff0052;
}

#desktop {
    display: initial;
}
#mobile {
    display: none;
}

/* REVIEW PAGE MEDIA QUERIES */


@media (max-width: 800px) {
    .select {
        width: 95vw;
        grid-template-columns: repeat(6, auto);
        margin-left: 5px;
    }
    .exp {
        grid-column: 1 / 7;
    }
}

@media (max-width: 500px) {
    #desktop {
        display: none;
    }
    #mobile {
        display: initial;
    }
    .select {
        grid-template-columns: repeat(3, auto);
        margin-left: 0;
    }
    .exp {
        grid-column: 1 / 4;
    }
}

@media (max-width: 400px) {
    .select {
        grid-template-columns: repeat(2, auto);
    }
    .exp {
        grid-column: 1 / 3;
    }
}





/* LINKS PAGE */





#linksmain {
    width: var(--home-width);
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 25px;
    margin: auto;
    margin-top: 30px;
}

#linksmain > div {
    border: 3px solid #3dff00;
    border-radius: 25px;
    padding: 10px 15px 10px 10px;
    background-color: #3cff0052;
}