*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html{
  font-size: 62.5%;
}

body{
  font-size: 1.6rem;
  font-family: sans-serif;
  color: #fff;
  scroll-behavior: smooth;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  background: #161623;
}

a{
  text-decoration: none;
  display: inline-block;
}


.blurred-wrapper{
  height: 100vh;
  background: url("./images/wallpaper.jpg") center/cover;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  overflow-y: auto;
  animation: hue 10s infinite alternate;
}

.blurred-wrapper::after{
  content: '';
  width: 100%;
  height: 100%;
  background: inherit;
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(2rem);
  z-index: -1;
  transform: scale(1.15);
}

@keyframes hue {
  from{
      filter: hue-rotate(0);
  }
  to{
      filter: hue-rotate(360deg);
  }
}

.main-header{
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contain{
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo{
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

.btn{
  padding: 1rem 2rem;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 2.5rem;
  margin-right: 5%;
}

.sign-up{
  color: #fff;
}

.hero{
  display: flex;
  align-items: center;
  height: calc(100% - 12rem);
}

.content-wrapper{
  max-width: 40rem;
  transform: translateY(-4rem);
}

.tagline{
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: lighter;
  margin-bottom: 1rem;
}

.title{
  font-size: 3rem;
  margin-bottom: 2rem;
}

.message{
  font-size: 1.4rem;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {

  .btn{
      padding: 1.5rem 3rem;
  }

  .content-wrapper{
      max-width: 60rem;
  }

  .tagline{
      font-size: 1.6rem;
  }

  .title{
      font-size: 6rem;
  }

  .message{
      font-size: 2rem;
  }

  .about-container {
    margin: 0rem 40rem;
  }
}

.blurred-wrapper{
  -ms-overflow-style: none; 
  scrollbar-width: none;
  width: 100vw;  
  height: 100vh;
}
.blurred-wrapper::-webkit-scrollbar { 
  display: none; 
}

