:root {
    --global-margin-half: 50px;
    --global-margin: 75px;
    --global-margin-calc: 200px;
    --main-color: #416A61;
    --dark-color: #111111;
    --light-color: #FFE8D6;
    --orange-color: #E88873;
    --blue-color: #B1FCFF;
}


html,
body {
    min-height: 100vh;
    font-size: 16px;
    height: 100%;
    line-height: 1.25;

    background-color: var(--main-color);
    transition: all 0.7s ease;

    color: var(--light-color);

}


main {
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    flex-direction: column;
    border: 0px solid yellow;
    margin-top: 10vw;
}

#logo {
    width: 200px;
    min-height: 200px;
    background: url(../images/logo.svg);
    background-repeat: no-repeat;
    margin-bottom: 5vh;
    
}

.content {
    width: 750px;
    font-family: "Maison Neue", "Helvetica", sans-serif;
    font-size: 24px;
    
}

p {
    margin-bottom: 20px;
}

p.petit {
    font-size: 16px;
}

h2 {
    font-size: 30px;
    color: var(--orange-color);
    font-weight: 600;
    font-family: "Nunito";
    margin: 30px 0 20px 0;
}

a {
    font-weight: 600;
    color: var(--blue-color);
    text-decoration: none;
}