*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'Caveat', cursive;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(75, 88, 150, 0.6),rgba(4,9,30,0.6)),url(../images/banner.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 3%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 100px;
}
.nav-links{
    flex:1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 16px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: red;
    display: block;
    margin: auto;
    transition: 0.4s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #ffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
/*.text-box h1{
    font-size: 40px;
}*/
.text-box p{
    margin: 10px 0 40px;
    font-size: 30px;
    color: white;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    background: transparent;
    position: relative;
    font-size: 25px;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid red;
    background: red;
    transition: 2s;
}
nav .fa{
    display: none;
}
.svg1 text {
    font-family: Arvo;
    letter-spacing: 10px;
    stroke: #ff0000;
    font-size: 60px;
    letter-spacing: 13px;
    font-weight: 700;
    stroke-width: 3;
    text-align: center;
    animation: textAnimate 4s infinite alternate;  
}
@keyframes textAnimate {
    0% {
      stroke-dasharray: 0 50%;
      stroke-dashoffset:  20%;
      fill:hsl(0, 0%, 99%);
    }
    100% {
      stroke-dasharray: 50% 0;
      stroke-dashoffstet: -20%;
      fill: hsla(189, 68%, 75%,0%)
    }
}
@media(max-width:700px) {
    html,body{
        overflow-x: hidden;
    }
    .text-box h1{
        font-size: 18px;
        margin: 10px 0 40px;
        color: white;
    }
    .nav-links ul li{
        display: block;
    }
    .svg1 text {
        font-size: 40px;
    }
    .nav-links{
        position: absolute;
        background: crimson;
        font-size: 28px;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #ffff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}
/*Next*/
.overview {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: auto;
    padding-right: auto;
    display: inline-block;
    height:100%;
    background: linear-gradient(-45deg, #ff0000, #c4c274, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.overview{
    width: 100%;
    color: #ffff;
    text-align: center;
}
.animation {
    display: block;
    letter-spacing: 10px;
    font-weight: 700;
    text-align: center;
    margin: auto;
}
.animation text{
    font-size: 60px;
    font-family: 'Montserrat';
}
.text-copy {
    fill: none;
    stroke: #ff0000;
    stroke-dasharray: 6% 29%;
    stroke-width: 5px;
    stroke-dashoffset: 0%;
    animation: stroke-offset 5.5s infinite linear;
}
.text-copy:nth-child(1){
  stroke: red;
  animation-delay: -1;
}
.text-copy:nth-child(2){
  stroke: black;
  animation-delay: -2s;
}
.text-copy:nth-child(3){
  stroke: black;
  animation-delay: -3s;
}
.text-copy:nth-child(4){
  stroke: black;
  animation-delay: -4s;
}
.text-copy:nth-child(5){
  stroke: black;
  animation-delay: -5s;
}
@keyframes stroke-offset{
  100% {stroke-dashoffset: -35%;}
}
.overview p{
    margin: 10px 0 40px;
    font-size: 28px;
    color: black;
    font-family: 'Cookie', cursive;
}
.overview p strong{
    font-family: 'Arvo', serif;
}
@media(max-width:700px){
    .overview {
        background-size: 2500% 400%;
        animation: gradient 30s ease infinite;
    }
    .animation {
        letter-spacing: 13px;
        font-weight: 800;       
    }
    .animation text{
        font-size: 45px;
        font-family:'Poppins';
        text-align: center;
        position: absolute;
    }
}
/*Next*/