*,
::after,
::before,
::backdrop,
::file-selector-button {
  margin: 0;
  padding: 0;
}

*,
::after,
::before,
::backdrop,
::file-selector-button {
  box-sizing: border-box;
  border: 0 solid;
}

@layer base {
  .google-map {
    border-style: none;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

body {
  background: #000;
  color: #fff;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/satoshi.woff2") format("woff2"),
    url("./fonts/satoshi.woff") format("woff"),
    url("./fonts/satoshi.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/satoshi-bold.woff2") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/satoshi-black.woff") format("woff");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

html {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: inherit;
  overflow: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

svg {
  shape-rendering: geometricPrecision;
}

.container {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  padding: 50px 15px;

  backface-visibility: hidden;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  / FIX layout shift /
  transform-origin: center center;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  transform-style: preserve-3d;

  animation: zoomIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


/ Prevent internal children from causing reflow after animation /
.content {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

h1 {
  font-weight: 600;
  font-size: 36px;
  text-transform: lowercase;
  letter-spacing: -0.95px;
}

h3 {
  font-weight: 500;
  font-size: 17px;
  margin-top: 6px;
  letter-spacing: -0.5px;
}

.socials {
  margin-top: 30px;
  display: flex;
  gap: 9px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;

  / FIX 1px shift */
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: auto;
}


a {
  cursor: pointer;
  transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
}

a:hover {
  transform: scale(1.1);
}
