@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 10px;
}

body {
  background-color: #000000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  font-family: "Inter", sans-serif;
}

a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font: inherit !important;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3.7dvh;
}
main {
  flex: 1;
  min-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 6dvh;
  padding-bottom: 6dvh;
  /* padding-left: 18.2dvw;
  padding-right: 18.2dvw; */
    padding-left: 1dvw;
  padding-right: 1dvw;
}

main video {
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  flex-shrink: 1;
  max-width: 100%;
  max-height: 100%;
  display: block;
}
footer {
  background-color: #fecc00;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 3.2dvw;
  padding-right: 1dvw;
  padding-top: 1.8dvh;
  padding-bottom: 1.8dvh;
}

.socials_container {
  display: flex;
  align-items: center;
  gap: 0.8dvw;
}

.socials_container a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  line-height: 0;
}

.socials_container svg{
  display: block;
}
.socials_container a:nth-child(3) svg{
  transform: scale(0.92);
  transform-origin: center;
}
.contact_container {
  display: flex;
  gap: 4vw;
  align-items: center;

}
.contact_container p {
  font-size: clamp(1.4em, 1.85dvw, 1.8em);
  font-weight: 600;
}

@media screen and (max-width: 767px) {
    header svg{
        max-width: clamp(126px, 34vw, 200px);
    }
  main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 3dvh;
    padding-bottom: 5dvh; 
    /* padding-left: 18.2dvw;
    padding-right: 18.2dvw; */
    padding-left: 0;
    padding-right: 0;
  }
  main video {
    width: 269px;
  }

  footer {
    flex-direction: column;
    padding-top: 4.1dvh;
    padding-bottom: 4.9dvh;
    padding-left: 1dvw;
    padding-right: 1dvw;
    gap: 5.5dvh;
  }

  footer .contact_container {
    flex-direction: column;
  
    gap: 2.7dvh;
  }
}