@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap");
@font-face {
  font-family: "BrittanySignature";
  src: url("../fonts/BrittanySignature.otf") format("opentype"), url("../fonts/BrittanySignature.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: Helvetica, Arial, "Inter", sans-serif;
}

/* Stlye */
.flash, .silvia {
  animation: 0.5s flash 0.2s ease-in-out both;
}

.flash--2, .main__header {
  animation: 0.5s flash 0.6s ease-in-out both;
}

.flash--3, .main__footer, .main__content {
  animation: 0.5s flash 1s ease-in-out both;
}

@keyframes flash {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: white;
  font-weight: 500;
  background-color: black; /* fallback para navegadores muy viejos */
  height: 100%;
  overflow: auto;
}

.logo {
  width: 150px;
  height: auto;
}

h1,
h2 {
  color: white;
}

h1 {
  font-size: 48px;
  font-weight: 400;
  font-family: "Instrument Serif", serif;
}

h2 {
  margin-top: -24px;
  font-weight: normal;
  color: #E0A841;
  font-size: 32px;
  font-family: "BrittanySignature";
}

.main {
  position: relative;
  z-index: 2;
  padding: 24px;
  height: calc(100vh - 48px);
  justify-content: space-between;
  flex-flow: column wrap;
  display: flex;
}

.silvia {
  width: 100%;
  height: 100vh;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.main__header {
  margin-top: 24px;
}

.main__footer {
  margin-bottom: 24px;
}

@media (min-width: 840px) {
  .main {
    width: 80%;
    margin: auto;
    max-width: 1200px;
  }
  .main__header {
    margin-top: 48px;
  }
  .main__footer {
    margin-bottom: 48px;
  }
  h1 {
    font-size: 64px;
  }
  h2 {
    font-size: 48px;
  }
}

/*# sourceMappingURL=style.css.map */
