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

body, html {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0f2027, #2c5364);
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0f2027, #2c5364);
  color: white;
  text-align: center;
}

.title {
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
}

.subtitle {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 300;
}
:root{
    --color-rojo: #98050d;
    --tono-azul: #1c3f64;
    --text-color: white;

    --titulo-h1:2.6rem;
    --titulo-h2:2rem;
    --titulo-h3:1.6rem;
    --parrafo:14rem;
    --span:12rem;
}