@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

body{
    margin: 5%;
    font-family: "Lato", sans-serif;
}

footer{
    background-color: lightcyan;
    margin-top: 5%;
}

p{
    text-align: justify;
}

#date{
    font-style: italic;
}

/* Navigation Styling */
.navigation {
    margin: 1rem 0 2rem 0;
}

.back-link {
    display: inline-block;
    background-color: lightcyan;
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: lightcyan;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

