body.home {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

body.home a {
    text-decoration: none;
    color: black;
    background-color: cyan;
    height: 20vh;
    font-size: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease all;
}

body.home a:hover {
    background-color: white;
}

body.home {
    margin: 0;
}

nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: cyan;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

nav a {
    color: black;
    text-decoration: none;
    font-size: 40px;
    padding: 0.5em;
}

nav a:hover {
    background-color: white;
    transition: 0.5s ease all;
}

a.next {
    text-align: right;
}