@font-face {
  font-family: "Seiva-Roman";
  src: url(./font/Seiva-Roman.ttf) format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

:root {
  --cor1: #CA1D52;
}

html {
  font-size: 4vw;
}
@media (orientation: portrait) {
  html {
    font-size: 7vw;
  }
}

@keyframes logo_gap {
  0% {
    gap: 0;
  }
  40% {
    gap: 0;
  }
  48% {
    gap: 1rem;
  }
  52% {
    gap: 1rem;
  }
  60% {
    gap: 0;
  }
  100% {
    gap: 0;
  }
}
@keyframes logo_letter {
  0% {
    max-width: 0;
  }
  49.9% {
    max-width: 0;
  }
  50% {
    max-width: 3rem;
  }
  100% {
    max-width: 3rem;
  }
}
@keyframes logo_symbol {
  0% {
    max-width: 3rem;
  }
  49.9% {
    max-width: 3rem;
  }
  50% {
    max-width: 0;
  }
  100% {
    max-width: 0;
  }
}
a {
  text-decoration: none;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100vh;
  color: var(--cor1);
}
.container .logo {
  display: flex;
  justify-content: center;
  animation: logo_gap 6s cubic-bezier(0.83, 0, 0.17, 1) infinite;
  transform: translateX(0.2rem);
}
.container .logo span {
  display: flex;
  justify-content: center;
}
.container .logo svg {
  fill: var(--cor1);
  height: 2.25rem;
  transition: 0.4s;
}
.container .logo svg:nth-child(even) {
  animation: logo_letter 6s infinite alternate;
}
.container .logo svg:nth-child(odd) {
  animation: logo_symbol 6s infinite alternate;
}
.container p {
  font-family: "Seiva-Roman", monospace;
  font-size: 0.3rem;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: center;
}
@media (orientation: portrait) {
  .container p {
    font-size: 0.5rem;
  }
}
.container .redes {
  display: flex;
  gap: 0.5rem;
}
.container .redes img {
  width: 0.5rem;
  transition: transform 0.3s;
}
@media (orientation: portrait) {
  .container .redes img {
    width: 1rem;
  }
}
.container .redes img:hover {
  transform: scale(1.1);
}

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