
body{
    font-family: gilroy-bold;
    background-color: rgb(15, 15, 15);
    color: white;
}
#nav{
display:flex;
flex-wrap: wrap;
justify-content:space-between;
}
.nav-button{
    border: 2px white solid;
    border-radius: 2em;
    font-size: 20px;
    font-family: "Poppins","HelveticaNeue",Arial,Helvetica,sans-serif;
    line-height: 1.47059;
    font-weight: 300;
    padding-right: 1vw;
    padding-left: 1vw;
}

.main-head{
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -0.6px;
    line-height: 1.03;
    font-family: gilroy-regular;
}
.sub-head{
    font-size: 22px;
    font-family: "Poppins","HelveticaNeue",Arial,Helvetica,sans-serif;
    line-height: 1.5;
    font-weight: 300;
}
.download{
background-color: white;
color:black;
font-size: 22px;
display: flex;
flex-wrap: wrap;
justify-content:center;
align-items: center;
color: rgb(0, 0, 0);
font-family: gilroy-bold;
font-weight: 500;
margin-top: 10vh;
margin-bottom: 13vh;

padding-right: 2vw;
padding-top: 1vh;
padding-bottom: 1vh;


padding-left: 2vw;

border-radius: 3em;

}



@keyframes example {
    0%{
        opacity:0;
    }
    50%{
        opacity:.5;
    }
    100%{
        opacity: 1;
    }
}


  .animated{
    animation-name: example;
    color: #ff751a;
    animation-duration: 1.5s;
    animation-timing-function: linear;
  }

  .hd{
    
    color: rgb(45, 255, 136);
    animation-name: hello;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    }

@keyframes hello {
    0%{
        opacity:0;
    }
    50%{
        opacity:.5;
    }
    100%{
        opacity: 1;
    }
}

  



  button{
    margin: 20px;
    text-align: center;
    background: #e6005c;
    color:#fff;
    border-radius: 2em;
    border:none;
    position:relative;
    height:60px;
    font-size:1.6em;
    font-family: gilroy-bold;
    padding:0 2em;
    cursor:pointer;
    transition:800ms ease all;
    outline:none;
  }
  button:hover{
    background:black;
    border-radius: 2em;
    color:white;
  }
  button:before,button:after{
    content:'';
    position:absolute;
    border-radius: 2em;
    top:0;
    right:0;
    height:2px;
    width:0;
    /* background-color: white; */
    transition:400ms ease all;
  }
  button:after{
    right:inherit;
    top:inherit;
    border-radius: 2em;
    left:0;
    bottom:0;
  }
  button:hover:before,button:hover:after{
    width:100%;
    border-radius: 2em;
    transition:800ms ease all;
  }
  

  /* for lists */
  
.card{
  margin:40px;
 }