*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: uppercase;
}
body{
    background-color: rgb(240, 240, 240);
}
p{
    font-size: 16px;
    font-weight: 500;
}
.menu{
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 50px 20px;
}
.menu-btn{
    padding: 10px 50px;
    border-radius: 5px;
    background-color: lightseagreen;
    outline: none;
    border: 2px solid transparent;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    width: 18%;
}
.menu-btn:hover{
    background-color: transparent;
    border:2px solid lightseagreen;
    color: lightseagreen;
    transition: all .7s;
}
marquee{
    padding-bottom: 20px;
}
header{
    padding: 30px 0;
    text-align: center;
    background-color: lightseagreen;
}
header h1 a{
    color: white;
    text-decoration: none;
    background-color: transparent;
    animation-name: anim;
    animation-duration: infinite;
}
.content{
    padding: 30px 0;
    text-align: center;
}
.section{
    padding: 30px 0;
    text-align: center;
}
.section2{
    background-color: lightseagreen;
    padding: 30px 0;
    text-align: center;
    color: white;
}
.section3{
    padding: 30px 0;
    text-align: center;
}
.num{
    display: flex;
    padding: 10px 0;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    align-items:center;
}
.num p{
    margin-bottom: 0;
}

.section4{
    background-color: lightseagreen;
    padding: 30px 0;
    text-align: center;
    color: white;
}
.flex{
    display: flex;
    justify-content: center;
    align-items: end;
}
.flex h3{
    margin-bottom: 0px;
}
.section4 a{
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
}
.section4 p{
    font-weight: 600;
}
.section5{
    padding: 30px 0;
}
.information{
    background-color: lightseagreen;
    padding: 30px 0;
    text-align: center;
    color: white;
}
.information p{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}
.section6{
    padding: 30px 0;
    text-align: center;
}
.table td{
    font-weight: 600;
}
.tbl{
    overflow: auto;
}
.section7{
    padding: 30px 0;
    text-align: center;
}
.info{
    width: 90%;
    text-align: justify;
    margin: auto;
    font-weight: 500;
}
.section7 p{
    margin-top: 15px;
    font-size: 15px;
    font-weight: 500;
}
.section7 h4{
    font-size: 30px;
    font-weight: bold;
}
.section h5{
    font-weight: 600;
}
footer{
    padding: 20px 0;
    text-align: center;
    background-color: lightseagreen;
    color: white;
    font-size: 18px;
    font-weight: 600;
}
.links{
    display: flex;
    justify-content: center;
}
.links a{
    text-decoration: none;
    background-color: lightseagreen;
    color: white;
    padding: 10px 15px;
    display: inline-block;
    margin: 10px 5px;
    border: 1px solid transparent;
}
.links a:hover{
    border:1px solid lightseagreen;
    color: lightseagreen;
    background-color: white;
    transition: all .7s;
}
.tbl{
    overflow: auto;
}

@keyframes anim {
    from {opacity:0.0;}
    to {opacity: 0.1;}
}


@media screen and (max-width:400px){
    .menu{
        display: flex;
        justify-content: space-between;
        padding: 30px 8px;
    }
    .menu-btn{
        display: inline-block;
        width: 23%;
        padding: 5px 5px;
        font-size: 12px;
    }
    .section2{
        font-size: 15px;
        padding: 30px 10px;
    }
    .information{
        padding: 30px 10px;
    }
    .information a:first-child{
        width: 200px;
    }
    .links{
        display: flex;
        /* flex-direction: column; */
        flex-wrap: wrap;
    }
    .links a{
        font-size: 14px;
        padding: 5px 10px;
        text-align: center;
    }
    .section{
        padding: 30px 15px;
    }
}