html {
    font-family: monospace;
}

body {
    background: #222222;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222222;
    padding: 1rem;
}

.main-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav-links a {
    margin-right: 1rem;
    text-decoration: none;
    color: white;
}

.main-nav-links a:hover {
    color: limegreen;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.welcome-message {
    color: limegreen;
    font-size: 2rem;
}
