@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

html {
  font-size: 100%;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  background-color: #fff;
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../assets/bg.jpg);
}

a, a:link, a:active, a:visited, a:hover {
  text-decoration: none;
}

a {
  color: #f15a31;
  transition: color 0.3s ease;
}

a:hover, a:focus, a:active {
  color: #666;
}

#home {
  position: relative;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

#bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-image: url(../assets/mob.png);
  background-repeat: no-repeat;
}

#top {
  position: relative;
  top: 80px;
}

#top img {
  width: 100%;
  max-width: 400px;
}

#bottom {
  position: relative;
}

#bottom .txt {
  margin: 16px 0;
  padding: 0 32px;
  background: -webkit-linear-gradient(#fff, #c4bdcd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#bottom .csoon {
  font-size: 60px;
  font-weight: 300;
}

#bottom .lnk {
  background: -webkit-linear-gradient(#f6c969, #ffae00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
  body {
    font-size: 18px;
  }

  #bottom .csoon {
    font-size: 40px;
  }

  #top img {
    width: 80%;
  }
}

@media only screen and (min-width : 320px) {}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
  #bg {
    background-position: center 10px;
  }
}

@media only screen and (max-width: 768px) and (orientation: landscape) {
  #top img {
    width: 35%;
    margin-bottom: 40px;
  }

  #bottom .txt {
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  #bg {
    background-size: cover;
  }

}

@media only screen and (min-width : 992px) {}

@media only screen and (min-width : 1200px) {}
