/* RESET */
*{
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}
a{
    color: #000;
    text-decoration: none;
}
ul{
    list-style: none;
}
a,
img{
    display: inline-block;
}
/* GENERAL */
body{
    font-size: 24px;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}
/* HEADER */
header,
footer ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header,
footer{
    padding: 120px;
}
main{
    padding: 0 120px;
}
article{
    max-width: 60%;
}
article p{
    line-height: 2;
}

/* FOOTER */
footer ul li a{
    font-size: 36px;
    font-weight: 500;
}