@import url('https://fonts.googleapis.com/css2?family=Signika+Negative&display=swap');
*, *::after,*::before{
    box-sizing: border-box;
}

body{
    padding: 0;
    margin: 0;
    font-family: 'Signika Negative', sans-serif;
}

p{
    margin: 10px 0px;
    font-size: 20px;
    font-weight: 400;
}
li{
    margin: 10px 0px;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container > *{
    /* padding: 30px; */
    max-width: 70vw;
}

.container > p{
    text-align: justify;
}

.container > .sub-h2 > li{
    font-weight: 700;
    font-size: 25px;
    width: 100%;
}


.container h1{
    text-decoration: underline;
}

.sub-h2 > ol,
.sub-h2 > ul{
    font-size: 20px;
}

#wrap-head{
    height: 200px;
    width: 100vw;
    overflow: hidden;
}

#nav-menu{
    z-index: 100;
    position: absolute;
    top: ;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
}
#nav-menu > .menu{
    color: aliceblue;
    max-width: 70vw;
    width: 100%;
}
#nav-menu > .menu > a{
    text-decoration: none;
    color: aliceblue;
}