body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #f8f5d7;
}

main {
    flex-grow: 1; /* Allows the main content to grow and fill available space */
    display: flex;
    flex-direction: column;
}

main .link {
    color: black;
    text-decoration: none;
}

main .link:hover {
    text-decoration: underline;
}

main img {
    width: auto\9; /* ie8 */
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.rounded-text-box, .rounded-footer {
    background-color: #25be73;
    color: white;
    border-radius: 10px;
    padding: 10px;
}

.navbar-nav .nav-link, .footer-nav .nav-link {
    font-size: 1.25rem;
    text-decoration: none;
}

.navbar-nav .nav-link:hover, .footer-nav .nav-link:hover {
    text-decoration: underline;
}

.footer-nav {
    flex-direction: row;
}

.footer-nav .nav-item {
    padding: 0 10px;
}

