@import url('https://fonts.googleapis.com/css2?family=Paytone+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=SUSE:wght@100..800&display=swap');

html {
    height: 100%;
    background: linear-gradient(to bottom, #4b0082, #0A1913 100%);
    background-repeat: no-repeat; /* ← evita que se repita */
    background-size: cover;       /* ← ajusta para cubrir todo */
    background-attachment: fixed; /* ← opcional, si quieres efecto parallax */
}

body {
    margin: 0;
    color: #ddd;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background: transparent;
}


img {
    height: 30vh;
}

#yearContainer {
    margin-top: 3em;
    display: flex;
    gap: 1em; 
}

a {
    text-decoration: none;
    color: lightgoldenrodyellow;
    font-size: 1.1rem;
}