* {
    padding: 0px;
    margin: 0px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.nav {
    background-color: green;
}

.nav img {
    width: 100%;
    height: 10vh;
}


.ban img {
    height: 100vh;
}



.mid {
    width: 100%;
    height: 90vh;
    background-image: url(./bck1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.midrap {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: auto;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

.box {
    width: 100%;
    height: 69vh;
    margin-top: 70px;
    text-align: center;
    border-left: 40px solid rgba(34, 252, 9, 0.8) ;
    border-top: 17px solid rgb(0, 55, 255);
    border-start-end-radius: 90px;
    border-end-start-radius: 60px;
    background-color: rgba(75, 209, 240, 0.491);
}

.box h1 {
    color: white;
    font-size: 70px;
    padding-top: 80px;
}

.box p {
    color: white;
    padding-top: 10px;
    font-size: 17px;
    text-align:justify;
    padding-left: 30px;
    padding-right: 30px;
}

.foot {
    background-color: green;
}

.foot i {
    font-size: 20px;
    color: white;
}

.ban h1 {
    font-size: 7em;
    font-weight: bolder;
    font-family: serif;
    color: transparent;
    text-align: center;
    animation: effect 3s linear infinite;
}

.ban p {
    width: 500px;
    height: 30px;
    background-color: white;
    color: #0B56ED;
    border-radius: 100px;
    font-size: 20px;
    position: relative;
    animation: mymove 7s infinite;
    animation-timing-function: linear-gradient;
}

@keyframes mymove {
    from {
        left: 0px;
    }

    to {
        left: 250px;
    }
}

@keyframes effect {
    0% {
        background: linear-gradient(#008000, #00FF00);
        -webkit-background-clip: text;
    }

    100% {
        background: linear-gradient(#3CE7D7, #000FFF);
        -webkit-background-clip: text;
    }

}