@import url('https://fonts.cdnfonts.com/css/hero-new');

* {
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  min-height: 100vh;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(assets/background.png);

  overflow: hidden;

  padding: 1.875vw;

  font-family: Hero New;
}

header {
  margin-left: 15px;
}

header img {
  width: 20px;
  height: 18px;
  margin-left: 10px;
  margin-top: 25px;
}

header .icon {
  transition: transform .5s;
}

header .icon:hover {
  transform: scale(1.4);
}

main {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  position: absolute;
  top: 86%;
  left: 50%;
  transform: translate(-50%, -50%);

  z-index: 0.9;
}

main .center-text {
  position: absolute;
  top: -85px;
  right: 134px;
}

main .center-text h2 {
  color: #FFF;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

main .center-text h1 {
  color: #00b5db;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

main .center-text h1 span {
  color: #FFF;
  font-size: 50px;
  font-weight: 700;
}

main .center-text span {
  color: #00b5db;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

main .center-text p {
  width: 420px;
  /* height: 165px; */
  color: #fffefe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

main .play {
  width: 280px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid #00b5db;
  background: linear-gradient(90deg, #00b5db 0%, #00b5db 100%);
  cursor: pointer;
  transition: all .5s;
  position: relative;
  top: 20px;
}

main .play span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 7px;
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

main .play:hover {
  transform: scale(1.1);
}

footer {
  left: 2vw;
  bottom: 0.5vw;
  position: absolute;
}

footer img {
  width: 148px;
  height: 148px;
}

@media (max-width: 900px) {
  main .center-text {
    width: max-content;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    right: inherit;
  }
}

@media (max-width: 500px) {
  main .center-text {
    width: 98vw;
    top: -150px;
  }
  
  main .center-text p {
    width: 84vw;
  }
}