* {
    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;
}
.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;

}

/* 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-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;
    }
}
/*sm*/
@media (max-width: 640px) {
    .container{
        max-width: 475px;
    }
}
/*xs*/
@media (max-width: 475px) {
    .container{
        max-width: 100%;
    }
}
