@import "./fonts.css";

html {
  background: url(/public/img/3cBQnDI.jpg) no-repeat 50%;
  background-size: cover;
  -webkit-background-size: cover;
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: PingHei, Lucida Grande, Lucida Sans Unicode, Helvetica, Arial, Verdana, "sans-serif";
  font-size: 14px;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  display: flex;
  margin: 0 auto;
}

.content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  padding: 5% 12px;
  margin: 0 auto;
}

.img_wrapper {
  width: 40%;
  display: flex;
  align-self: center;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slogan {
  margin-top: 16px;
  font-family: "Myriad Pro", Helvetica, Arial, Verdana, "sans-serif";
  font-weight: 300;
  font-size: 28px;
  line-height: 48px;
  text-align: center;
  color: #fff;
}

.download_btns {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.download_btn {
  min-width: 132px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  color: #fff;
  background-color: rgba(0, 0, 0);
  border: none;
  border-radius: 4px;
  transition: opacity 100ms ease;
  cursor: pointer;
}

.download_btn:hover {
  opacity: .75;
}

.download_btn_text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.download_btn_label {
  margin: 0px;
  font-size: 10px;
  text-align: left;
}

.download_btn_os {
  margin: 0px;
  font-size: 20px;
  text-align: left;
}

.footer {
  min-height: max-content;
  width: 100vw;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer_inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  align-items: center;
  margin: 0 auto;
  padding: 12px 0;
}

.footer_ele {
  font-size: 12px;
  color: #a8a8a8;
  background-color: transparent;
  border: none;
}

.js_footer_link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.footer_dropdowns {
  display: flex;
  gap: 4px;
}

.copyright {
  white-space: nowrap;
}

.footer_group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.footer_menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  gap: 6px;
  padding: 0px;
  margin: 0px;
}

.footer_sep {
  display: none;
}

.footer_menu_item {
  text-decoration: none;
}

.social_links {
  display: flex;
  gap: 14px;
}

.social_link {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  background-color: rgba(0, 0, 0, .2);
  border-radius: 100%;
  transition: all 100ms ease;
}

.social_link:hover {
  background-color: rgba(0, 0, 0, .3);
}

.tippy-box {
  background-color: rgba(34, 34, 34, 0.95);
  border-radius: 0px;
}
.tippy-content {
  padding-inline: 0px;
}
.tippy-box[data-placement^='top'] > .tippy-arrow::before {
  border-top-color: rgba(34, 34, 34, 0.95);
}
.tippy-box[data-placement^='bottom'] > .tippy-arrow::before {
  border-bottom-color: rgba(34, 34, 34, 0.95);
}
.tippy-box[data-placement^='left'] > .tippy-arrow::before {
  border-left-color: rgba(34, 34, 34, 0.95);
}
.tippy-box[data-placement^='right'] > .tippy-arrow::before {
  border-right-color: rgba(34, 34, 34, 0.95);
}

.dropdown_btn {
  min-width: 128px;
  display: block;
  padding: 8px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  background-color: transparent;
  border: none;
  transition: all 100ms ease;
}

.dropdown_btn:hover {
  background-color: hsl(0, 0%, 66%, 0.5);
}

.lang_container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.device_message {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}

@media (min-width: 860px) {
  body {
    height: 100vh;
  }

  .content {
    flex-direction: row;
    align-items: start;
    padding: 5% 80px;
  }

  .main {
    padding-top: 72px;
  }

  .slogan {
    margin-top: 56px;
    font-size: 38px;
  }

  .footer_inner {
    flex-direction: row;
  }

  .footer_group {
    flex-direction: row;
    margin: 0px auto;
  }

  .footer_menu {
    flex-direction: row;
  }

  .footer_sep {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .img_wrapper {
    max-width: 296px;
    width: 50%;
  }

  .footer_group {
    display: none;
  }
}

@media (min-width: 1280px) {
  .footer_inner {
    width: 95%;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
  }

  .footer_group {
    display: flex;
    margin: 0px;
  }
}

@media (min-width: 1440px) {
  .social_links {
    display: flex;
  }
}