html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
}

body>* {
    max-width: 100%;
}


header {
    box-sizing: border-box;
    width: 100%;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;

    padding: 16px 24px 16px 24px;
    gap: 24px;
}

header nav {
    display: inline-flex;
    box-sizing: border-box;
    justify-content: flex-start;
    gap: 8px;
}

hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 72px 24px;
    width: 100%;

}

hero .texts {
    display: flex;
    flex-direction: column;
}

hero h1,
hero h5 {
    text-align: center;
}

#circle {
    width: 720px;
    height: 720px;
    background-color: var(--color-theme);
    position: absolute;
    border-radius: 999px;
    z-index: -1;
    top: 72px;
    transform: translateY(-50%);
    filter: blur(360px);
}

.section {
    width: 100%;
    padding: 64px 0px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.section .container {
    width: 100%;
    max-width: 1040px;

    display: flex;
    gap: 32px;
}

.section span {
    display: flex;
    justify-content: space-between;
}

img {
    border-radius: 48px;
    width: 334px;
    align-self: stretch;
    object-fit: cover;
    /* ✨ this is the key */
    object-position: center;
    /* optional: centers the crop */

}

aside {
    display: flex;
    flex-direction: column;
    gap: 32px;

}

.third {
    width: calc((100% - 64px) * (1 / 3));
}

.half {
    width: calc((100% - 32px) * (1 / 2));
}

.thanks {
    flex-direction: column;
}


/* TABLETTE */
@media (min-width: 600px) and (max-width: 900px) {
    #circle {
        width: 90vw;
        max-width: 720px;
        height: 90vw;
        max-height: 720px;
        filter: blur(40vw);
    }
}

/* MOBILE */
@media (max-width: 599px) {
    hero{
        width: 100%;
        overflow: hidden;
        padding-inline: 32px;
min-height: fit-content;
height: 60vh;
    }

    #circle {
        width: 90vw;
        max-width: 720px;
        height: 90vw;
        max-height: 720px;
        filter: blur(40vw);
    }

    hero h1 {
        font-size: 15vw;
    }

    section.section {
        overflow: clip;
        padding: 32px;
    }

    footer {
        padding: 32px 32px 48px 32px;
    }

    footer>section> :last-child {
        flex-direction: column;
        align-items: start;
        gap: 16px;
    }

    .intro {
        flex-direction: column;
        height: 80vh;
        justify-content: center;
    }


    .intro h2, h3, p{
        text-align: start;
    }

    .intro img{
        display: none;
    }
}