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: linear-gradient(0deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.7) 38%, rgba(0,0,0,.7) 100%), url('../assets/bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.spacer{
    flex: 1 0 auto;
}

ul{
    display: table;
    margin: 0 auto;
}

a{
    text-decoration: none;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #4c9de0;
    font-weight: 600;
  }

.hover-underline-animation:hover{
    color: #4c9de0;
}
  
  .hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    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: #357db7;
  }

  footer svg{
      width: 25px;
  }