* {
    background-color: rgb(246, 245, 247);
}
@media (prefers-color-scheme: dark) {
    * {
        background-color: #0A0A0B;
        color: whitesmoke;
    }
}
@media (prefers-color-scheme: light) {
    * {
        background-color: #FFFFFF;
    }
}
body {
    width: 90%;
    max-width: 500px;
    margin: 30px auto;
    text-align: start;
    line-height: 1.425;
    font-family: 'Lato', sans-serif;
}
h1 {
    font-size: 32px;
}
p {
    font-style: normal;
    font-size: 16px;
}
footer a {
    color: #dedddd;
    text-decoration: none;
    font-weight: 500;
    margin-left: 10px;
    margin-right: 10px;
}
footer a:hover {
    color: black;
    text-decoration: underline;
}
@media (max-width: 549px) {
    footer a {
      display: block;
      text-align: center;
      line-height: 2;
    }
}  
@media (min-width: 549px) {
    footer a:not(:last-child) {
      margin-right: 6%;
    }
}