body, ul, h1, p {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    gap: 1em;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #181818;
    color: #e8e8e8;
    font-size: 1.2rem;
    transition: background 1s ease-in-out, color 1s ease-in-out;
}

img {
    width: 50%;
}

h1 {
    font-size: 3rem;
    font-family: monospace;
}

h1, p {
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: .1ch;
}

ul {
    display: flex;
    gap: 1ch;
}

a, li {
    color: dodgerblue;
    text-decoration: underline;
    list-style: none;
    cursor: pointer;
}
