main p, main ul li, main ol li {
    font-size: 1vw;
    color: var(--grey);
    margin-bottom: 4vh;
}

main h3 {
    font-size: 1.2vw;
}

.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    text-align: center;
}

@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}

.intro h1 {
    font-size: 2vw;
    color: var(--grey);
    animation: fadeIn 0.7s ease-out;
}

.intro p {
    padding: 0 15vw;
    margin: 1% 0;
    animation: fadeIn 0.7s ease-out;
}

.intro a {
    background-color: var(--light-red);
    font-size: 0.8vw;
    color: white;
    text-decoration: none;
    border-radius: 0.5vw;
    padding: 0.7%;
    font-weight: 500;
    animation: fadeIn 0.7s ease-out;
}

.intro a:hover {
    background-color: var(--red);
    color: var(--light-grey);
    transform: scale(1.02);
    transition: all 0.1s;
}

.grey {
    background-color: var(--lighter-grey);
}

section {
    padding: 7%;
}

main h2 {
    font-size: 2vw;
    color: var(--grey);
    margin-bottom: 5vh;
}

.images-type {
    margin-top: 10vh;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    gap: 5vh;
}

.image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vh;
}

.image img {
    width: auto;
    height: 25vh;
}

.image p {
    margin: 0;
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    gap: 8vh 5vw;
}

.images img {
    max-width: 100%;
    height: auto;
    justify-self: center;
    align-self: center;
}

.flags {
    display: flex;
    justify-content: center;
    gap: 10vw;
}

.flags h3 {
    margin-bottom: 4vh;
    color: var(--red);
}

/* fullscreen */
.image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-out;
}

.image-overlay img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    background-color: var(--lighter-grey);
}

.red {
    color: var(--red);
    text-decoration: none;
}

.non_href_red {
    color: var(--red);
}

.red:hover {
    text-decoration: underline;
}

@media (max-width: 1150px) {
    main p, main ul li, main ol li {
        font-size: 2.5vw;
    }

    main h3 {
        font-size: 4vw;
    }

    .intro h1 {
        font-size: 5vw;
    }

    .intro a {
        font-size: 3vw;
        border-radius: 15px;
        padding: 15px;
        margin-top: 20px;
    }

    main h2 {
        font-size: 4vw;
    }

}


@media (max-width: 800px) {
    main p, main ul li, main ol li {
        font-size: 4vw;
    }

    main h3 {
        font-size: 4.8vw;
    }

    .intro h1 {
        font-size: 7vw;
        margin-bottom: 20px;
    }

    .intro p {
        display: none;
    }

    .intro a {
        font-size: 4vw;
        padding: 3%;
        border-radius: 2vw;
    }

    section {
        padding: 10%;
    }

    main h2 {
        font-size: 7vw;
    }

    .images-type {
        grid-template-columns: 1fr;
    }

    .images {
        grid-template-columns: 1fr !important;
    }

    .flags {
        flex-direction: column;
    }
}