@font-face {
  font-family: 'helvetica-b';
  src: url('../assets/fonts/helvetica-b.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'helvetica-m';
  src: url('../assets/fonts/helvetica-m.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'helvetica-r';
  src: url('../assets/fonts/helvetica-r.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


body {
  margin: 0;
  padding: 0;
  background-color: #ec1e79;
  font-family: 'helvetica-r', 'Arial', sans-serif;
  color: white;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
}

.logo img {
  width: 420px;
  margin-bottom: 10px;
}

.subtext {
  margin: 0;
  font-size: 16px;
  letter-spacing: 2px;
}

.mensaje {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 60px 0 40px;
  gap: 20px;
}

.mensaje .icono {
  width: 170px;
}

.mensaje h1 {
  font-size: 42px;
  margin: 0;
  font-weight: bold;
  font-family: 'helvetica-b', 'Arial', sans-serif;
}

.mensaje p {
  margin: 0;
  font-size: 35px;
  text-align: left;
  font-family: 'helvetica-m', 'Arial', sans-serif;
}

.contacto {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.contacto a {
  font-size: 25px;
  font-family: 'helvetica-b', 'Arial', sans-serif;
  text-decoration: none;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.contacto a:hover {
  color: #f0f0f0
}


@media screen and (max-width: 600px) {
  .logo img {
    width: 300px;
  }
  
  .mensaje {
    flex-direction: column;
    gap: 30px;
  }

  .mensaje img {
    order: 2;
  }

  .mensaje h1 {
    font-size: 28px;
  }

  .mensaje p {
    text-align: center;
    font-size: 25px;
  }

  .contacto {
    gap: 3px;
    flex-direction: column;
  }

  .contacto a {
    font-size: 20px;
    display: block;
  }
}