html,
body {
  margin: 0;
  padding: 0;
  font-family: "Arial Nova Light", Arial, Helvetica;
  display: flex;
  flex-direction: column;
}

@font-face {
  font-family: "Arial Nova Light";
  src: url("fonts/ArialNova-Light.ttf") format("truetype");
}

section {
  padding: 60px 30px;
}

section .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  animation: fadeIn 0.5s forwards;
}

.soon {
  height: 30vh;
  margin-top: 30vh;
}

.text {
  max-width: 60vh;
  text-align: left;
}

h1 {
  font-size: 16px;
  font-style: italic;
  font-family: Arial, sans-serif;
}

p {
  font-size: 12pt;
  line-height: 1.2;
  font-family: "Arial Nova Light", Arial, Helvetica;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .soon .content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .text {
    max-width: 100%;
  }

  h1 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
    line-height: 1.4;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
  }
}
