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

body {
    background-color: #dee6db;
}

.hero {
    height: 35vh;

    background-image: url("kuvat/hero_mieluskyla2.jpg");
    background-size: cover;
    background-position: center 70%;

    display: flex;
    justify-content: flex-start;
    align-items: flex-end;

    position: relative;
}


.hero-content {
    text-align: left;
    margin-bottom: 20px;
    margin-left: 50px;
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: 3rem;
    color: white;
    font-weight: bold;
    padding-bottom: 10px;
}

.hero p {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

.kortit {
    display: flex;
    justify-content: center;
    gap: 30px;

    max-width: 1500px;
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;

    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;

}

.kortti {
    flex: 1;

    background-color: #F4F7F2;

    padding: 30px;

    border-radius: 12px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

    transition: transform 0.2s ease,
        box-shadow 0.2s ease;

    text-align: center;
    text-decoration: none;
    color: #2F4F2F;
}

.kortti h2 {
    font-family: Georgia, serif;
    font-size: 1.4rem;
}

.kortti img {
    width: 100%;
    height: 300px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 20px;
}

.kortti-era h2 {
    margin-bottom: 30px;
}

.kortti img.suorakaide-kuva {
        width: 100%;
        height: 300px;
        aspect-ratio: auto;
        object-fit: contain;
    }

/* TYYLIASETUKSET MOBIILILAITTEITA VARTEN */

@media (max-width: 768px) {

    .hero {
        max-height: 30vh;
    }

    .hero-content {
        margin-bottom: 5px;
        margin-left: 20px;
    }

    .hero h1 {
        font-size: 1.5rem;
        padding-bottom: 5px;
    }

    .hero p {
        font-size: 0.8rem;
    }

    /*kortit allekkain*/
    .kortit {
        flex-direction: column;
        align-items: center;
        gap: 20px;

        margin-top: 25px;
        margin-bottom: 25px;

        padding-left: 15px;
        padding-right: 15px;
    }

    /*korttien sisennykset*/
    .kortti {
        width: 90%;
        padding: 15px;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    /*kortin otsikko*/
    .kortti h2 {
        font-size: 1.1rem;
        text-align: left;
    }

    .kortti-era h2 {
        margin-bottom: 0;
    }

    /*korttien kuvat*/
    .kortti img {
        width: 30%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        margin-top: 0;
    }

    .kortti img.suorakaide-kuva {
        width: 30%;
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
        margin-top: 0;
    }

}