/* Valeur par défaut */

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

    font-family: 'Gelasio', serif;
    font-size: 20px;
}

body{
    /* background-color: blue; */
    background-color: #FFF9F3;
    position: relative;

    /* padding pour le footer */
    min-height: 100vh;
    padding-bottom: 200px;
}

h1, h2, h3{
    font-family: 'Fredericka the Great', serif;
    font-weight: normal;
}

h1{
    font-size: 120px;
}

h2{
    font-size: 80px;
    color: #8C4848;
}

h3{
    font-size: 40px;
}

h4{
    font-size: 30px;
}

a{
    color: #8C4848;
    text-decoration: none;
}

a:hover{
    color: rgb(131, 61, 61);
}

/* ----------------------------------------------- */
/* RESPONSIVE */
/* ----------------------------------------------- */

@media screen and (max-width: 1000px) {
    body{
        padding-bottom: 600px;
    }

    *, p, a{
        font-size: 50px;
    }

    h1{
        font-size: 150px;
    }
    h2{
        font-size: 90px;
    }
    h4{
        font-size: 50px;
    }
}



