body {
    margin: 0;
    background: #242424;
    color: white;
    font-family: Georgia, serif;
    min-height: 100vh;
}


/* top navigation */

header {
    text-align: center;
    padding: 10px;
}


header a {
    color: white;
    text-decoration: none;
}



/* middle content */

main {
    text-align: center;
    margin-top: 100px;
}


main h1 {
    font-size: 32px;
}


main p {
    margin-top: 60px;
    font-size: 20px;
    line-height: 1.5;
}


main h3 {
    margin-top: 60px;
}



/* bottom menu */

footer {
    position: fixed;
    bottom: 30px;
    width: 100%;
    text-align: center;
}


footer nav {
    display: flex;
    justify-content: center;
    gap: 40px;
}


footer a {
    color:white;
    text-decoration:none;
}