:root{
	--black-basic: #1e1e1e;
	--white-basic: white;
    --grey-basic: #e8e8e8;
    --font-default: 'Cascadia Code';
    --font-ios: 'SF-Regular';
    --font-android: 'JetBrains Mono';

    --img-size: 12rem;
}
body{
    background-image: url('global\ assets/tilesets/tileBasic.png');
    background-size: 8rem;
    color: var(--black-basic);
    font-family: var(--font-default);
    padding: 0;
    margin: 0;
}
@font-face{
    font-family: 'Cascadia Code';
    src: url('fonts/Cascadia_Code/CascadiaCode-VariableFont_wght.ttf') format('ttf'),
        url('fonts/Cascadia_Code/CascadiaCode-Italic-VariableFont_wght.ttf') format('tff');
    font-weight: normal;
    font-style: normal;
}
img{
    transform: scale(40%);
}
.container{
    border: 0px solid red;
}
/*---top---*/ 
a{
    text-decoration: none;
    color: var(--white-basic);
}
.navMenu ul{

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.navMenu ul li{
    list-style: none;
    margin-right: 40px;
}


.top{
    user-select: none;
    overflow-x: hidden;
    max-height: 100%;

}
.title{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    margin: 0;
    padding: 0;
    padding-top: 10vh;
}
#title h1{
    text-transform: uppercase;
    font-size: 7rem;
    margin: 0;
    padding: 0;

    background: #e8e8e8;
    box-shadow: 0 0 50px #e8e8e8;

}
#comment{
    position: relative;
    color: #f79011;
    left: 90%;
    bottom: 80px;
    transform: rotate(-11deg);
}
#edition {
    position: relative;
    left: 35%;
    bottom: 50px;
}
.center {
    height: 24vh;
    min-height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}
.center button{
    position: relative;
    background: none;
    border: none;
    width: auto;
    height: auto;
}
.center button:nth-child(1){
    left: 400px;
}
.center button:nth-child(3){
    right: 370px;
    top: 25px;
}
.center button:nth-child(1):active{
    transform: scale(90%);
}
.center button:nth-child(3):active{
    transform: scale(90%);
}
.center .sbj_nemo{
    margin-left: 80px;
    z-index: 1;
}
.menu ul li{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1vh;
}
.menu ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0;
}
#menuBtn{
    background: var(--black-basic);
    color: var(--white-basic);
    font-family: 'Cascadia Code';
    font-size: 1.5rem;
    width: 23rem;
    height: 6vh;
    padding: 0.5em;
    display: flex;
    justify-content: center;
    align-items: center;
}
#menuBtn:hover{
    background: #215b8d;
    color: yellow;
}
#menuBtn:active{
    background: skyblue;
    font-size: 1.4rem; 
    color: var(--black-basic);
}
/*---bonus :p---*/
.noti_sign{
    width: 200px;
    height: auto;
    background-color: yellow;
    padding: 1em;
    border: 2px solid var(--black-basic);
    position: relative;
    bottom: 250px;
    right: 320px;
}
.noti_sign img{
    width: 15rem;
    height: auto;
    position: relative;
    right: 50px;
}
.nav{
    width: 100%;
    background: var(--black-basic);
}
.navMenu{
    width: 100%;
    height: auto;
    min-height: 5vh;
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    color: var(--white-basic);

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
.bottom{
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--black-basic);
}
.bottom ul li img{
    width: 4rem;
    height: auto;
}
.bottom ul li{
    padding: 0;
    margin: 0;
}
.bottom ul{
    padding:0;
    margin: 0;
}
.bottom p{
    color: grey;
}

/* media queries template from Slaying-The-Dragon*/
/*desktop*/
/*2xl*/
.container{
    max-width: 1536px;
    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;
    }
    .decor img:nth-child(2){
        top: -400px;
        right: 50%;
    }
    #title{
        z-index: 1;
    }

}
/*lg*/
@media (max-width: 1024px) {
    .container{
        max-width: 768px;
    }
    .decor img:nth-child(2){
        top: -400px;
        right: 80%;
    }
    #title{
        z-index: 1;
    }
    .noti_sign{
        position: static;
        bottom: 0;
        right: 0;

    }

}
/*md*/
@media (max-width: 768px) {
    .container{
        max-width: 640px;
    }
    
    #title h1{
        font-size: 5rem;
    }
    #comment{
        bottom: 60px;
    }
}
/*sm*/
@media (max-width: 640px) {
    .container{
        max-width: 475px;
    }
    .nav{
        font-size: 14px;
    }
    .bottom{
        font-size: 14px;
    }

}
/*xs*/
@media (max-width: 475px) {
    .container{
        max-width: 100%;
    }
    .nav{
        padding-right: 20px;
    }
}


















