* {
    margin: 0;
    line-height: calc(1em + 0.5rem);
}
body{
    background: black; 
    color: var(--clr-light);
    font-family: 'General Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}
.title__nemo{
    transform: scale(140%);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    user-select: none;
}

button {
    display: inline-block;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
}

body{
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
        url(/assets/ocean_wave_background.gif); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    height: 100vh;
    margin: 0;

    overflow-y: hidden;
}

ul{
    list-style: none;
}
a{
    text-decoration: none;
}
.top__section{
    width: 100%;
    height: auto;
    padding: 0;
}
.top__btn {
    display: flex;
    justify-content: flex-end;
}
.top__btn li{
    margin: 0;
    padding: 0;
    list-style: none;
    margin-right: 1rem;
}

.bottom__menu{
    width: 99%;
    height: 3rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}
#return_btn{
    display: inline-block;
    position: relative; 
    left: 260px;
    top: 5px;
    font-size: 2rem;
    font-weight: 600;
    color: white;
}
/* the nav menu */
.explore__content{
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 80vh;
    margin-top: 3rem;
    margin-bottom: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    overflow: hidden;
    border: 0.2rem solid white;
    border-radius: 8px;

}
.explore__close {
    display: flex;
    justify-content: flex-end;
}
.explore__close img{
    width: 2rem;
    height: auto;
}
.explore__categoryWrapper{
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 74vh;
    margin: 0 auto;
    margin-bottom: 10rem;
    border: 0.2rem solid white;
    border-radius: 8px;

}
.explore__category{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 10vh;
}
.category{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: none;
    width: 30%;
    height: 10vh;
    color: white;
    text-transform: uppercase;
    font-family: 'Cascadia Code', Arial, sans-serif, Mono;
    font-weight: bold;
    font-size: 2rem;
}
hr{
    border: 0.1rem solid white;
}
.explore__scapes{
    height: auto;
    width: 100%;
    height: 86%;
    overflow: scroll;
}
.explore__scape{
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    margin-top: 1rem;
    margin: 1rem auto;
    width: 98%;
    height: auto;
    border: 0.2rem solid white;
    border-radius: 8px;

    display: flex;
    flex-direction: row;
    gap: 1rem;

    overflow-y: hidden;

    font-family: 'Cascadia Code';
    
}
.explore__scape__thumbnail{
    display: block;
    width: 300px;
    max-width: 300px;
    min-width: 300px;
    height: 18vh;
    background-color: grey;
    border-radius: 8px;
}
.explore__scape__detail{
    display: flex;
    flex-direction: column;
    margin-right: 1rem; 
    margin-top: 0.5rem;
    max-width: 100%;
    overflow-wrap: break-word;
}
.explore__scape__detail p{
    filter: opacity(64%);
    font-size: 1rem;
}
.explore__scape__detail h1{
    font-size: 2rem;
}
/* media queries template from Slaying-The-Dragon*/
/*desktop*/
/*2xl*/
.container{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
@media (max-height: 768px) {
    .bottom__menu{
        display: none;
    }
}
@media (min-width: 1536px) {
    .container{
        max-width: 1536px;
    }
}
@media (max-width: 1536px) {
    .container{
        max-width: 1280px;
    }
}
/*xl*/
@media (max-width: 1280px) {
    .container{
        max-width: 1024px;
    }
}
/*lg*/
@media (max-width: 1024px) {
    .container{
        max-width: 768px;
    }
}
/*md*/
@media (max-width: 768px) {
    .container{
        max-width: 640px;
    }
    .explore__scape{
        flex-direction: column;
    }
    .explore__scape__detail{
        padding: 1rem;
        padding-top: 0;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    .explore__scape__thumbnail{
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        height: 32vh;
    }
    .explore__scape__detail p{
        font-size: 1rem;
    }
    .explore__scape__detail h1{
        font-size: 2rem;
    }
}
/*sm*/
@media (max-width: 640px) {
    .container{
        max-width: 475px;
    }
}
/*xs*/
@media (max-width: 475px) {
    .container{
        max-width: 100%;
    }
}
