html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Ubuntu', sans-serif;
    color: #ffffff;
}

svg{
    width: 30px;
    height: 30px;
}

#jwiz svg{
    width: 17px;
}

#referral svg{
    width: 24px;
}

h1{
    font-size: 3.3rem;
}

.container-fluid{
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-image: url('../assets/bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.spacer{
    flex: 1 0 auto;
}

.holder{
    /*width: 60%;*/
    background-color: rgba(0, 0, 0, 0);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.holder .row{
    font-size: 1.2rem;
    padding-top: 6rem;
}

a{
    text-decoration: none;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #f5f1a6;
  }

.hover-underline-animation:hover{
    color: #777777;
}
  
  .hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f5f1a6;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  footer{
      background-color: #000000;
  }

  footer svg{
      width: 25px;
  }

@media(min-width: 320px){
    .holder{
        margin-top: 4rem;
    }
}

  @media (min-width: 576px){
      .holder{
          width: 75%;
      }
  }

  @media (min-width: 768px){
      .holder{
          width: 90%;
          background-color: rgba(0, 0, 0, 0);
      }

      .holder .row{
        padding-top: 0;
      }

      #jwiz, #referral{
          font-size: 1.3rem;
      }
  }

  @media (min-width: 992px){
      .holder{
          margin-top: 5rem !important;
      }
  }

  @media (min-width: 1200px){
    h1{
        font-size: 4rem;
    }
    
    #jwiz, #referral{
        font-size: 1.8rem;
    }
  }