* {
    padding: 0px;
    margin: 0px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.nav {
    background-color: green;

}

.name {
    color: white !important;

}

.combopack {
    background-color: rgb(89, 246, 89);
    
}

.combo:hover {
    background-color: blue;
    color: white;
}

.nav img {
    width: 100%;
    height: 10vh;
}


.ban img {
    height: 100vh;
}



.mid {
    width: 100%;
    height: 100vh;
    background-image: url(./cont.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;
}

.mid h1 {
    color: white;
    font-size: 30px;
    padding-top: 30px;
}

.mid p {
    color: white;
}



.box span {

    font-size: 100px;
    font-style: oblique;
    font-weight: bolder;
    color: rgb(136, 233, 136);

}


.box {
    margin-top: 30px;
    padding-left: 300px;

}

.box:hover {
    height: 87vh;
    padding-left: 300px;
    background-color: rgba(124, 157, 157, 0.779);
    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;
}

.box #textbox {
    width: 50%;
    height: 7vh;
    background-color: rgb(237, 194, 200);
    border: 9px solid green;
    border-radius: 50px;
    outline: none;
    padding-left: 30px;

}

.box textarea {
    width: 52%;
    height: 20vh;
    background-color: rgb(232, 194, 202);
    border: 8px solid green;
    outline: none;
    padding-left: 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;
    }
}