/* Yleiset asetukset */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

/* Animaation tausta */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom, #000033, #330033); /* Tummansininen ylhäällä, tummanpurppura alhaalla */
    background-size: 100% 200%;
    animation: colorShift 5s ease infinite;
}

/* Taustan värianimaatio */
@keyframes colorShift {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Keskitetty sisältö */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

/* H1-tyylit */
h1 {
    font-size: 2rem;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* X-offset, Y-offset, blur, color */
}

/* H2-tyylit */
h2 {
    font-size: 1rem;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* X-offset, Y-offset, blur, color */
}

/* Kuvan keskitys */
.centered-image {
    max-width: 300px; /* Kuvan enimmäisleveys */
    width: 100%;
    height: auto;
    border-radius: 15px; /* Halutessasi voit pyöristää reunat */
}