* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    /* border: 1px solid red; */
}

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

.content {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.main {
    flex-grow: 1;
}

.topnav, .main, .footer {
    flex-shrink: 0;
}

/* full image background */
.bg {
    /* The image used */
    background-image: url("../img/95190E8F-58B2-460C-8C0F-D067EDAFAF1F_1_201_a.jpg");

    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: green;
    font-size: 1.2em;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    border-right: 1px solid rgb(43, 214, 77);
}

/* Change color on hover */
.topnav a:hover {
    background-color: white;
    color: green;
}

/* Text titles for home page */
.center-title {
    text-align: center;
    vertical-align: middle;
    text-shadow: 3px 3px #f7f1f1;
    background-color: rgba(255, 255, 255, .5);
    color: green;
    font-style: oblique;
    font-size: 2.5em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5em;
    width: max-content;
    height: max-content;
    padding: 2em;
}

.center-title h1, h5, h2 {
    margin: 0px;
    font-family: 'Times New Roman', Times, serif;
}

/* Style the footer */
.footer {
    background-color: rgba(0, 0, 0, 0.279);
    padding: 10px;
    text-align: center;
}

/* Style the topnav links */
.footer a {
    color: white;
    font-size: medium;
    font-style: bold;
    text-decoration: none;
    padding: 5px;
}

/* Change color on hover */
.footer a:hover {
    background-color:green;
    color: rgb(252, 249, 249);
}
    
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
    .center-title {
        font-size: 1.5em;
        margin-top: 3em;
        padding: 1em;    
    }

    .topnav {
        overflow: hidden;
        background-color: green;
        font-size: 1em;
    }

    .topnav a {
        padding: 6px 5px;
    }
}
