@import url("https://fonts.googleapis.com/css2?family=Boldonse&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Shippori+Mincho+B1&family=Zen+Dots&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: Marios;
  src: url("./Marios-Black.otf");
}
.container {
  width: 100%;
  height: 100vh;
  background: black;
  color: white;
  padding-bottom: 40px;
  display: grid;
  overflow: hidden;
  justify-items: center;
  grid-template-rows: 1fr 0.4fr;
}
.container .nav {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 14px;
}
.container .nav .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 10px;
}
.container .nav .logo span {
  font-size: 20px;
  color: gold;
}
.container .data {
  width: 70%;
  height: 100%;
  text-align: left;
  display: flex;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
  flex-direction: column;
}
.container .data .title {
  font-size: 60px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Marios";
}
.container .data .sub {
  font-size: 16px;
  margin-top: 15px;
  line-height: 140%;
  font-family: "Montserrat";
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #9c9c9c;
}
.container .data .btns {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  height: 45px;
  margin-top: 40px;
}
.container .data .btns .btn {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  padding: 0 25px;
  border-radius: 30px;
  border: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Montserrat";
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  gap: 15px;
  cursor: pointer;
  background: #008f64;
  box-shadow: 0 0 40px rgba(50, 255, 159, 0.3803921569);
  transition: all 0.5s ease;
  text-decoration: none;
  font-size: 14px;
}
.container .data .btns .btn .icon {
  filter: invert(1);
  width: 15px;
  height: auto;
}
.container .data .btns .btn:hover {
  background: #00bd84;
}
.container .data .btns .btn.pl {
  box-shadow: 0 0 40px rgba(50, 163, 255, 0.3803921569);
  background: #013cff;
}
.container .data .btns .btn.pl:hover {
  background: #6387ff;
}
.container .mbcont {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.container .mbcont .mobile {
  width: 320px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 0 200px #3d3d3d;
  border: 2px solid #3f3f3f;
  position: relative;
  z-index: 3;
}
.container .mbcont .mobile .screen {
  border-radius: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
  height: auto;
}
.container .mbcont .mobile.mini {
  width: 280px;
  margin-top: 90px;
}

@media only screen and (max-width: 700px) {
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .container .data {
    width: 100%;
    padding-top: 30px;
  }
  .container .data .title {
    font-size: 35px;
  }
  .container .data .sub {
    font-size: 13px;
  }
  .container .data .btns {
    width: 100%;
    height: -moz-max-content;
    height: max-content;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .container .data .btns .btn {
    height: 40px;
  }
  .container .mobile {
    width: 90%;
  }
  .container .mobile.mini {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */