@import url("https://fonts.cdnfonts.com/css/jost-3");
@import url("https://fonts.cdnfonts.com/css/akzidenzgrotesk");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: #03172b;
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dfeb99', GradientType=1);
}

.middle-content{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.middle-content .caption{
    position: relative;
}
.middle-content .caption .top{
  font-size: 33px;
  color: white;
  font-family: "Jost", sans-serif;
  position: absolute;
  font-weight: lighter;
  font-weight: 300;
  left: -27%;
  top: -33%
}
.middle-content .caption h1{
   color: aliceblue;
   font-size: 100px;
   text-transform: uppercase;
   font-family: "AkzidenzGrotesk", sans-serif;
   background: -webkit-linear-gradient(34deg, #e51c27 25%, #0b519c 75%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-weight: 300;
}
.middle-content .caption .bottom{
    font-size: 33px;
    color: white;
    font-family: "AkzidenzGrotesk", sans-serif;
    text-transform: uppercase;
    position: absolute;
    font-weight: 300;
    right: -27%;
    bottom: -33%;
}
.circled-arrow{
    height: 100px;
    width: 100px;
    background-color: #e51c27;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    bottom: -4%;
    left: 50%;
    opacity: 0;
    transition: 0.6s;
}
.circled-arrow i{
    color: #ffffff;
    transform: rotate(91deg);
    position: absolute;
    font-size: 20px;
    top: 10%;
    animation: anim 2s linear infinite;
}


@keyframes anim{
    0%{
      position: absolute;
      top: 15%;
    }
    50%{
        position: absolute;
        top: 25%;
    }
    100%{
        position: absolute;
        top: 15%;
    }
}


@media(max-width:1600px){
    .middle-content .caption h1 {
        font-size: 80px;
    }
    .middle-content .caption .bottom {
        font-size: 22px;
        bottom: -15%;
    }
    .middle-content .caption .top {
        font-size: 22px;
        left: -18%;
    }
    .circled-arrow{
        height: 65px;
        width: 65px;
    }
    .circled-arrow i{
        font-size: 16px;
    }
}

@media(max-width:750px){
    .middle-content .caption h1 {
        font-size: 30px;
    }
    .middle-content .caption .top {
        font-size: 16px;
        left: -18%;
        top: -50% ; 
    }
    .middle-content .caption .bottom {
        font-size: 16px;
        bottom: -40%;
        /* right: */
    }
    
}