/* ================================================== GLOBAL */

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

body {
    width: 100%;
    height: 100vh;
    padding: 5vh 10vw;
    color: #515151;
    background-color: #fffaf3;
    font-size: 26px;
    font-family: "Avenir LT Pro", sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

button {
    cursor: pointer;
    padding: 10px 20px;
}

/* ================================================== FONTS */

@font-face {
    font-family: "LT Afficher Neue";
    src: url("./assets/fonts/LTAfficherNeue-SemBdSubhead.otf") format("opentype"),
    url("./assets/fonts/LTAfficherNeue-SemBdSubhead.ttf") format("truetype");
}

@font-face {
    font-family: "Avenir LT Pro";
    src: url("./assets/fonts/AvenirLTProMedium.otf") format("opentype");
}

/* ================================================== PAGE */

img {
    width: 100%;
    max-width: 800px;
    margin-top: -10vh;
}

p {
    margin: 18px 0;
}

strong {
    color: #bf9369;
    font-size: 30px;
    font-family: "LT Afficher Neue";
    letter-spacing: 1px;
}