/* Base styles for mobile */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

header {
    background-color: #295B2A;
    color: white;
    padding: 1em;
    text-align: center;
}

main {
    padding: 0em;
}

/* Base styles for mobile */
.main-body {
    padding: 10px;
    border: none;
}

/* Styles for widescreen */
@media (min-width: 760px) {
    .main-body {
        padding: 20px 20px;
        max-width: 760px;
        margin: 0 auto; /* Center the content */
    }
}

h1, h2, h3 {
    margin-top: 0;
	margin-bottom: 0;
}

h3 {
    font-size: 2.5em; /* Increase font size */
    padding-top: 0.5em; /* Reduce padding above */
    margin-bottom: 0.2em; /* Reduce margin below */
}

h2 {font-size: 3em; 
margin-bottom: 0.2em; /* Reduce margin below */
margin-top: 1.8em; /* Reduce margin below */
}

.header h2 {
	font-size: 1.5em;
	margin-top: 0em; /* Reduce margin below */
	padding-top: 0em; /* Reduce padding above */
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background-color: #E7F4E7;
    margin-bottom: 0.5em;
    padding: 0.5em;
}

a {
    color: #295B2A;
}

footer {
    background-color: #f4f4f4;
    color: white;
    text-align: center;
    padding: 1em;
}

/* Centered circular image */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
}

#interests {
    display: block; /* Ensure the h3 is not affected by flexbox */
}
#interests .interest-columns {
    display: flex;
    flex-wrap: wrap;
}
#interests .interest-columns > div {
    flex: 1 1 33%; /* Ensure three columns across */
    box-sizing: border-box;
    padding: 10px;
}
@media (max-width: 760px) {
    #interests .interest-columns {
        flex-direction: column;
    }
}

.nav-menu {
            background-color: #f4f4f4;
            padding: 10px;
            border-bottom: 1px solid #ddd;
			text-align: center;
        }
.nav-menu a {
            margin: 0 20px;
            text-decoration: none;
            display: inline-block;
        }
		
.nav-menu a:hover {
            text-decoration: underline;
        }