* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #373e49;
  color: #efefef;
  font-family: "Inconsolata", monospace;
  height: 100vh;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 20px;
}

.title {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.email {
  color: #efefef;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.email:hover {
  opacity: 0.8;
}

/* Animación inicial para los elementos */
.title,
.subtitle,
.email {
  opacity: 0;
  transform: translateY(20px);
}
