main
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

main > div:nth-of-type(1)
{
    margin-bottom: 50px;
    margin-top: 50px;
    border: none;
    border-radius: 24px;
    width: 800px;
    background-color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 4px 24px #f3e6d8;
}
main > div:nth-of-type(1) > div
{
    margin-bottom: 30px;
    margin-top: 30px;
    width: 600px;
    border-radius: 24px;
    background-color: #fffbe6;
    border: none;
    box-shadow: 0 2px 8px #f3e6d8;
}
main > div:nth-of-type(1) > div > div
{
    color: #b48a78;
    padding: 20px;
    display: flex;
    align-items: center;
    width: max-content;
    flex-wrap: nowrap;
}
main > div:nth-of-type(1) > h1
{
    text-align: center;
    margin-top: 30px;
    color: #b48a78;
    font-size: 50px;
}
main > div:nth-of-type(1) > div > div > h2
{
    margin-left: 10px;
}
main > div:nth-of-type(1) > div > div > h2 > a
{
    display: inline-block;
    color: #b48a78;
    text-decoration: none;
    transition: 0.3s;
}
main > div:nth-of-type(1) > div > div > h2 > a:hover
{
    color: #ffb6c1;
    transition: 0.3s;
    transform: scale(1.05);
}

/* Version mobile pour la page Contact */
@media (max-width: 800px) {
    main > div:nth-of-type(1) {
        width: 450px;
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 12px;
        padding: 0 2vw;
    }

    main > div:nth-of-type(1) > h1 {
        font-size: 2em;
        margin-top: 20px;
    }

    main > div:nth-of-type(1) > div {
        width: 95vw;
        min-width: unset;
        max-width: 100%;
        margin-top: 15px;
        margin-bottom: 15px;
        border-radius: 12px;
        padding: 0;
    }

    main > div:nth-of-type(1) > div > div {
        flex-direction: row;
        align-items: flex-start;
        padding: 12px;
        font-size: 1rem;
    }

    main > div:nth-of-type(1) > div > div > h2 {
        margin-left: 0;
        font-size: 1em;
        word-break: break-word;
        align-self: center;
    }

    main > div:nth-of-type(1) > div > div > h2 > a {
        font-size: 1em;
        word-break: break-all;
    }

    svg {
        width: 24px;
        height: 24px;
        margin-right: 5px;
    }
}
@media (max-width: 460px)
{
    main > div:nth-of-type(1) {
        width: 90%;
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 12px;
        padding: 0 2vw;
    }
    main > div:nth-of-type(1) > div > div > h2 {
        margin-left: 0;
        font-size: 15px;
        word-break: break-word;
        align-self: center;
    }

    main > div:nth-of-type(1) > div > div > h2 > a {
        font-size: 15px;
        word-break: break-all;
    }
    main > div:nth-of-type(1) > h1 {
        font-size: 25px;
        margin-top: 20px;
    }
}