html,
body {
    font-family: 'Big Shoulders Display', cursive;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}


a h1 {
    color: black;
}

* {
    margin: 0;
    padding: 0;
}

.nav img {
    width: 13vw;
    margin: -2vw 0 0 6vw;
}



@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .btn {
    border: 1px solid rgb(0, 0, 0);
    border-radius: 8px;
    background-color: transparent;
    color: rgb(0, 0, 0);
    padding: 6px 35px;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
  }
  
  .btn:hover {
    animation: pulse 1s infinite;
  }
  
  .btn:hover {
    background-image: linear-gradient(to right, rgba(220, 135, 188, 0.2), rgba(35, 148, 181, 0.2));
  }
  



.video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.img {
    width: 100vw;
}

.overflow {
    overflow: hidden;
}

.text-center {
    text-align: center;
}
.link{
  color: black;
}