* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    background: #f5f3ef;

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: Arial, Helvetica, sans-serif;

    color: #0f2138;
}

main {

    text-align: center;

    width: 90%;
    max-width: 900px;
}

.logo {

    width: 420px;
    max-width: 90%;

    margin-bottom: 40px;
}

h1 {

    font-size: 2.5rem;
    font-weight: 700;

    margin-bottom: 30px;
}

.trait {

    width: 70px;
    height: 10px;

    background: #a11824;

    margin: 0 auto 40px auto;
}

.email {

    font-size: 1.3rem;
    font-weight: 500;
}

#email {

    cursor: pointer;

    transition: 0.2s;
}

#email:hover {

    opacity: 0.7;
}

#message-copie {

    margin-top: 20px;

    color: #a11824;

    font-weight: bold;

    min-height: 25px;
}