*, html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    color: black;
}


.dark {
    background-color: black;
    color: white;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

nav {
    position: fixed;
    bottom: 0;
    background-color: black;
    width: 100%;
    padding: 15px;
}

nav a {
    color: white;
    padding: 15px;
    text-decoration: none;
    font-weight: 700;
}

nav a:hover {
    background-color: blue;
    cursor: pointer;
    transition: background-color .5s
}