:root {
    --white: #F5F5F5;
    --black: #202020;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    font-family: "Times New Roman", serif;
    font-size: 18px;
    
    background-color: var(--white);
}

header {
    padding: 2rem;
    
    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid var(--black);
}

nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

h1, h2 {
    all: unset;
}

a, a:visited {
    color: var(--black);
    text-decoration: underline;
}

#logo {
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
}

#profile-picture {
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    margin: 2rem;
}

footer {
    padding: 2rem;
    
    text-align: center;

    border-top: 1px solid var(--black);
}