body{
    background-color: #171c61;
    color: white;
    margin-top: 0px;
    margin-bottom: 150px;  
    text-align: center;  
}

h2{
    font-family: genei;
    font-size: 25px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
}

h3{
    font-family: genei;
    font-size: 25px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
}

h4{
    font-family: genei;
    font-size: 25px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
}

a img{
    margin-left: 0px;
    float: left;
}

hr{
    color: #ffffff;
    size: 1px;
}

.menu-btn{
    position: fixed;
    top: 10px;
    right: 14px;
    display: flex;
    height: 80px;
    width: 100px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: rgb(23, 28, 97);
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after{
    content: "";
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 5px;
    position: absolute;
    background-color: #fff;
}

.menu-btn span::before{
    bottom: 10px;
}

.menu-btn span::after{
    top: 10px;
}

#menu-btn-check:checked~.menu-btn span{
    background-color: rgba(255, 255, 255,0);
}

#menu-btn-check:checked~.menu-btn span::before{
    bottom: 0;
    transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after{
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check{
    display: none;
}

.menu-content{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: rgb(23, 28, 97);
    transition: all 0.5s;
}

.menu-content ul{
    padding: 70px 10px 0;
}

.menu-content ul li{
    list-style: none;
}

.menu-content ul li a{
    display: block;
    width: 100%;
    font-size: 20px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
    font-family: genei;
    font-weight: bold;
    text-align: center;
}

.menu-content ul li a::before{
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content ul li a:hover{
    transform: scale(1.2);
}

#menu-btn-check:checked~ .menu-content{
    left: 0;
}

.mousikomi{
    margin-left: 175px;
}