@font-face{
    font-family: Helvetica;
    src: url(../css/HelveticaNeue.otf);
}
body{
    background: url(../img/cover.png);
    background-size: cover;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

video {
    /** Simulationg background-size: cover */
    object-fit: cover;
    height: 100%;
    width: 100%;
  
    position: absolute;
    top: 0;
    left: 0;
    z-index: -9999;
  }

  .video-wrapper {
    /* Telling our absolute positioned video to 
    be relative to this element */
    position: relative;
  
    width: 400px;
    height: 200px;
  
    /* Will not allow the video to overflow the 
    container */
    overflow: hidden;
  
    /* Centering the container's content vertically 
    and horizontally */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header {
    color: white;
  }
  a{
    color: white !important;
  }

  .logo {
    max-width: 600px;
    margin: 0 auto;
  }

  #signup-buton{
    padding: 15px;
    position: relative;
    top: -100px;
    margin-left: calc(50% - 60px);
    border-radius: 30px;
    animation: pulse 1.5s infinite;
  }
  .text-right{
    text-align: end;
  }

  @keyframes pulse {
    0% {
      transform: scale(.9);
    }
    70% {
      transform: scale(1);
    }
      100% {
       transform: scale(.9);
    }
  }

  @media (width <= 600px) {
    .logo{
      max-width: 80%;
    }
  }
  @media (width <= 400px) {
    #signup-buton{
      top: -80px;
      border-radius: 25px;
      padding: 10px;
    }
  }
  @media (width > 600px) {
    #signup-buton{
      top: -130px;
    }
  }
  @media (width >= 1300px) {
    #signup-buton{
      padding: 15px;
      top: -140px;
      border-radius: 30px;
    }
  }