* {
  margin: 0;
  padding: 0;
}

.app {
  transform: scale(0.9) translate(0, -5vmin);
  min-height: 100vh;
}

body {
  background: rgb(15, 41, 85);
  background-image: url("../img/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  height: 100%;
}

body::-webkit-scrollbar {
  width: 3px;
}

body::-webkit-scrollbar-track {
  background: rgb(15, 41, 85);
}

body::-webkit-scrollbar-thumb {
  background: #fa5a00;
  border-radius: 30px;
}

@media (orientation: landscape) {
  body {
    background-size: 100% 100%;
  }
}

.logo {
  max-width: 277px;
  max-height: 73px;
  padding-top: 1.5vw;
  padding-left: 19vw;
}

.offer {
  text-align: center;
  padding-left: 35%;
}

.offer__title {
  font-family: Roboto, sans-serif;
  font-weight: 900;
  font-style: italic;
  color: white;
  text-transform: uppercase;
  font-size: 55px;
  max-width: 680px;
  margin: 0 auto;
  padding-bottom: 40px;
  text-shadow: 0 0 25px black;
}

.offer__content {
  display: flex;
  padding: 25px 0 40px 0;
  flex-direction: column;
  align-items: center;
  border-radius: 37px;
  max-width: 678px;
  margin: 0 auto;
  background: rgb(53 90 231);
  background: radial-gradient(circle, rgb(53 90 231) 0%, rgb(0 18 68) 95%);
}

.offer__content-title {
  font-family: Roboto, sans-serif;
  font-weight: 800;
  font-style: italic;
  color: white;
  text-transform: uppercase;
  font-size: 41px;
  max-width: 500px;
}

.offer__content-title > span {
  color: #ffea00;
}

.offer__content-btn {
  position: relative;
  margin-top: 30px;
  text-transform: uppercase;
  color: white;
  font-family: Roboto, sans-serif;
  font-weight: 600;
  font-size: 37px;
  background-color: #fff;
  border-radius: 38px;
  background-image: -moz-linear-gradient(
    90deg,
    rgb(250, 65, 0) 0%,
    rgb(250, 94, 0) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(250, 65, 0) 0%,
    rgb(250, 94, 0) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgb(250, 65, 0) 0%,
    rgb(250, 94, 0) 100%
  );
  box-shadow: 0px 14px 51px 0px rgba(250, 65, 0, 0.4);
  max-width: 315px;
  width: 100%;
  transition: 0.2s ease;
}

.offer__content-btn:hover {
  box-shadow: 0px 14px 51px 0px rgba(250, 65, 0, 0.8);
}

.offer__content-btn > a > img {
  position: relative;
  top: 5px;
}

.offer__content-btn > a {
  display: flex;
  overflow: hidden;
  justify-content: flex-start;
  align-items: center;
  color: white;
  text-decoration: none;
}

.offer__subtitle {
  font-family: Roboto, sans-serif;
  font-weight: 500;
  color: white;
  font-size: 30px;
  max-width: 660px;
  margin: 40px auto;
}

@media (max-width: 1200px) {
  .offer {
    padding: 0;
  }

  .logo {
    display: block;
    padding: 0;
    margin: 0 auto;
  }
}

@media (max-width: 768px), (max-height: 700px) {
  .app {
    transform: scale(0.9) translate(0, -7vmin);
  }

  .offer__title {
    font-size: 48px;
  }

  .offer__content-title {
    font-size: 33px;
  }

  .offer__content-btn {
    max-width: 270px;
    font-size: 30px;
  }

  .logo {
    max-width: 210px;
  }

  .offer__content {
    max-width: 440px;
    padding: 25px 0 25px 0;

  }

  .offer__content-title {
    max-width: 400px;
  }

  .offer__title {
    max-width: 410px;
    padding-bottom: 20px;
  }

  .offer__subtitle {
    max-width: 440px;
    font-size: 18px;
  }

}

@media (max-width: 600px) {
  body {
    background-image: url('../img/bg-mb.png');
  }
}

@media (max-width: 375px) {
  .offer__title {
    max-width: 320px;
    font-size: 37px;
  }

  .logo {
    max-width: 170px;
    margin-bottom: 20px;
  }

  .offer__content-title {
    max-width: 300px;
    font-size: 24px;
  }

  .offer__content-btn {
    font-size: 25px;
  }

  .offer__subtitle {
    font-size: 17px;
    margin: 15px auto;
  }
}

@media (min-height: 850px) {
  html {
    overflow: hidden;
  }
  body {
    overflow: hidden;
  }
}
