body {
    background: linear-gradient(135deg, #3e3e41, #3e3e41, #5d5d3c, #000000);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 90vh;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

#textArea {
    left: 0;
    position: absolute;
    text-align: center;
    margin-top: -5%;
    top: 40%;
    width: 100%;
    vertical-align: middle;
    align-self: center;
    font-size: xx-large;
    color: white;
    animation-name: show;
    animation-duration: 4s;
}

p {
    height: min-content;
    display: block;
}

@keyframes show {
    from {
        color: rgba(255, 255, 255, 0);
    }
    to {
        color: rgba(255, 255, 255, 255);
    }
}

/* Add a black background color to the top navigation */
.topnav {
    background-color: rgba(0, 0, 0, 255);
    border-radius: 1vh;
    width: 80%;
    height: 5%;
    align-self: center;
    position: absolute;
    align-items: center;
    display: flex;
    justify-content: space-around;
    left: 10%;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    width: 26%;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.bottombar {
    left: 5%;
    background-color: #333;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    width: 90%;
    text-align: center;
    align-self: center;
    border-radius: 1vh;
}

.bottombar > p {
    color: grey;
}