* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}



/* Navigation Bar */
.nav {
    width: 100%;
    height: 8vh;
    background-color: rgb(24, 23, 23);
}

.navbar-brand {
    font-size: 35px;
}

.container-fluid {
    width: 85%;
    margin: auto;
}

.col {
    padding-left: 680px;
}

.nav-item {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 22px;
}

.nav-item a {
    color: white;
    display: inline-block;
    padding: 5px 10px;
    position: relative;
}

.nav-item a:hover {
    color: #DC143C;
}

.nav-item a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #DC143C;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

a:hover:after {
    width: 100%;
    left: 0;
}

@media screen and (max-height: 300px) {
    ul {
        margin-top: 40px;
    }
}



/* Banner */
.ban {
    width: 100%;
    height: 80vh;
    background-image: url(./ban3.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.banrap {
    height: 80vh;
    background-color: rgb(0, 0, 0, 0.4);
}

.animate-charcter {
    padding-top: 360px;
    margin-left: 350px;
    background-image: linear-gradient(-225deg,
            #fe96ae 0%,
            #fffefb 29%,
            #fff713 67%,
            #ff0055 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
    font-size: 50px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: lighter;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

.col-md-12 p {
    width: 70%;
    text-align: justify;
    padding-top: 30px;
    margin-left: 230px;
    font-size: 18px;
}




/* Question */
.question {
    width: 100%;
    height: 100vh;
    background-color: rgb(145, 145, 241);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.questionrap {
    width: 80%;
    margin: auto;
    padding-top: 6rem;
}

.box {
    width: 100%;
    padding: 30px;
    border-radius: 40px;
    background-color: rgba(84, 83, 83, 0.584);
}

.box h4 {
    padding-bottom: 20px;
}

.box h4 a {
    font-size: 30px;
    color: aliceblue;
    text-decoration: none;
    transition: 0.4s;
}

.box h4 a:hover {
    color: black;
}




/* footer 2 */
.foot2 {
    width: 100%;
    height: 7vh;
    background-color: black;
}

.footrap2 {
    width: 100%;
    margin: auto;
}

.footrap2 h3 {
    padding-top: 2vh;
    font-size: 20px;
    color: white;
    text-align: center;
    font-style: oblique;
}