* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
}

html,
body {
  height: 100%;
  background: #122771;
}

:root {
  --header-height-desktop: 120px;
  --footer-height-desktop: 80px;
  --header-height-mobile: 60px;
  --footer-height-mobile: 60px;
  --secondary-main: #006afa;
  --secondary-dark: #013cdb;
  --primary-text: #e6f1ff;
}

.container {
  width: 100%;
  height: 100%;
}

main {
  width: 100%;
  height: calc(100% - var(--footer-height-desktop));
}

.inactive-promo {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("./images/inactive_bg_1920.webp?v=1");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* display: none; */
}

button {
  cursor: pointer;
  background: var(--secondary-main);
  color: var(--primary-text);
  box-shadow: 0px 3px 1.5px 0px rgba(0, 0, 0, 0.35);
  border: none;
  border-radius: 6px;
  padding: 8px 50px;
  font-size: 16px;
  z-index: 1;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

button:hover {
  background: var(--secondary-dark);
}

.info-wrapper {
  width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 32px;
}

.info-wrapper p {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.7px;
  margin-bottom: 54px;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #041242;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.social-wrapper a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-wrapper a img {
  width: 24px;
  height: 24px;
}

@media only screen and (max-width: 768px) {
  .inactive-promo {
    background-image: url("./images/inactive_bg_768.webp?v=1");
  }

  .info-wrapper {
    width: 440px;
  }

  .info-wrapper img {
    width: 90%;
  }

  .info-wrapper p {
    font-size: 24px;
    line-height: 1.5;
  }
}

@media only screen and (max-width: 480px) {
  .inactive-promo {
    background-image: url("./images/inactive_bg_480.webp?v=1");
  }

  main {
    height: calc(100% - var(--footer-height-mobile));
  }

  .info-wrapper {
    width: 100%;
    padding: 0 40px;
  }

  .info-wrapper img {
    width: 85%;
  }

  .info-wrapper p {
    font-size: 20px;
    line-height: 1.5;
  }

  footer {
    height: var(--footer-height-mobile);
  }

  .social-wrapper {
    gap: 28px;
  }

  .social-wrapper a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .social-wrapper a img {
    width: 28px;
    height: 28px;
  }
}

@media only screen and (max-width: 360px) {
  .info-wrapper {
    padding: 0 24px;
  }
}

@media (orientation: landscape) {
  main {
    width: 100%;
    height: calc(100% - var(--footer-height-mobile));
  }

  .inactive-promo {
    background-image: url("./images/inactive_bg_1920.webp?v=1");
  }

  .info-wrapper {
    width: 440px;
  }

  .info-wrapper img {
    width: 90%;
    margin-bottom: 5vh;
  }

  .info-wrapper p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 5vh;
  }

  footer {
    height: var(--footer-height-mobile);
  }
}
