/* GENERAL */
*{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin:0;
}

body{
    width:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header{
    width:100%;
    background-color: #8D8DAA;
    padding:1em;
    text-align: center;
    color:#DFDFDE;
    font-weight: lighter;
    font-size: 1.2rem;
}

main{
    text-align: center;
    background-color:#DFDFDE;
    width:100%;
    height: 100vh;
}

pre{
    font-size: 2rem;
    color:#F56D91
}