/* GENERAL **************************************************/
body{
    font-family: 'Raleway', sans-serif;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

nav{
    height: 80px;
    width: 100%;
    background-color: #1976d2;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
nav a{
    display: block;
    color: white;
    font-size: 2em;
    width: 200px;
    text-align: center;
    text-decoration: none;
    position: relative;
}
nav span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.content{
    height: 100vh;
    width: 80%;
    margin: auto;
    position: relative;
}
.center{
    width: 100%;
    text-align: center;
    /* Vertical alignement */
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}
h1{
    margin: 0;
    font-size: 12em;
}
.subtitle{
    margin: 0;
    font-size: 4em;
}
p{
    margin: 0;
    font-size: 2em;
}