html {
    background-color: black;
    color: white;
}

/* Project 2 Homepage */
body.home {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

body.home a {
    text-decoration: none;
    color: white;
    background-color: rgba(255, 255, 255, 0.053);
    border: 1px solid black;
    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: #b8b8ff;
}

body.home {
    margin: 0;
}

/* Title and Author */
#title {
    text-align: center;
    font-family: serif;
    letter-spacing: 0;
    font-size: 35px;

    & a {
        text-decoration: none;
        color: whitesmoke;


        &:hover {
            transition: 0.75s ease all;
            color: #b8b8ff;
        }
    }
}

/* Bottom Nav */
nav {
    align-items: center;
    margin: 10px auto;
    position: fixed;
    bottom: 0;
    left: 0; 
    width: 100%;
    display: flex;
    justify-content: center;
}
.nav-arrow {
    width: 80px;
    height: 40px;
    text-align: center;

    color: whitesmoke;
    text-decoration: none;
    font-size: 40px;
    padding: 0.5em;
}
.nav-arrow span {
    display: inline-block;
    transform: rotate(180deg);
}

nav a:hover {
    color: #b8b8ff;
    transition: 0.75s ease all;
}