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

body {
  height: 100vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
}

.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-video {
  width: 320px;
  max-width: 80vw;
  height: auto;
}

.email {
  margin-top: 20px;
  color: black;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700; /* 👈 negrita */
  opacity: 0.9;
}

.email:hover {
  opacity: 1;
}

/* móvil */
@media (max-width: 600px) {
  .logo-video {
    width: 240px;
  }

  .email {
    font-size: 13px;
  }
}