body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family:Georgia, 'Times New Roman', Times, serif;
}
header {
    background-color: #f1f1f1;
    padding: 20px;
    top: 0;
    width: 100%;
    font-size: 1.2em;
    color: #333;
}
nav {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
}
nav ul {
    list-style: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
nav ul li a:hover {
    text-decoration: underline;
}
nav ul li.active a {
    font-weight: bold;
}

a {
    text-decoration: none;
    color: #007BFF;
}
a:hover {
    text-decoration: underline;
}
h1 {
    font-size: 2em;
    color: #333;
}
h2 {
    font-size: 1.5em;
    color: #555;
}
h3 {
    font-size: 1.2em;
    color: #777;
}
h4 {
    font-size: 1em;
    color: #999;
}
h5 {
    font-size: 0.8em;
    color: #bbb;
}
h6 {
    font-size: 0.6em;
    color: #ddd;
}
p {
    font-size: 1em;
    color: #444;
}
ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
li {
    list-style: none;
    padding: 10px;
    font-size: 1.2em;
    color: #555;
    text-align: left;
    margin: 0 auto;
}
footer {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 0.8em;
    color: #777;
}
form div, form button {
    margin: 1rem 0;
}

/*Custom*/
.container {
    padding-top: 50px;
}

.main-image {
    max-width: 50%;
    height: auto;
    margin-left: 3rem;
}

.title {
    font-size: 3em;
    color: #333;
}

#header_name_container {
    align-content: center;
}

.main-image {
    border-radius: 10px;
}

#main_content {
    font-size: medium;
}

@media screen and (max-width: 768px) {
    .main-image {
        max-width: 100%;
        margin-left: 0;
    }
    .title {
        font-size: 2em;
    }
    header, footer {
        font-size: 0.8em;
    }
    nav ul li {
        display: block;
        margin: 5px 0;
    }
    nav ul li a {
        font-size: 1em;
    }
    h1, h2, h3, h4, h5, h6 {
        font-size: 1.5em;
    }
    p, li {
        font-size: 1em;
    }
    .container {
        padding-top: 20px;
    }
    #header_name_container {
        text-align: center;
    }
    #main_content {
        font-size: small;
    }
    form div, form button {
        margin: 0.5rem 0;
    }
    footer {
        font-size: 0.7em;
    }
    .title {
        font-size: 1.5em;
    }
    .main-image {
        max-width: 100%;
        margin-left: 0;
    }
    
}