/*
Matt McGowan
FXP 3240 - Web Development
*/
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Exo', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    background-image: url('images/your-background-image.jpg'); /* Path to background image */
    background-size: cover; /* Ensure the image covers the entire background */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-attachment: fixed; /* Make the background image fixed when scrolling */
    background-position: center; /* Center the background image */
}

nav {
    width: 120px;
    background-color: #333;
    color: #fff;
    padding: 12px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    overflow: auto;
}
.nav-logo {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 10px 0;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    display: block;
    padding: 10px;
    font-size: 16px;
}

nav ul li a:hover {
    background-color: #575757;
}

main {
    margin-left: 160px;
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - 60px);
}

footer {
    background-color: #333;
    padding: 5px;
    text-align: center;
    width: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    margin-left: 50px;
}

footer a {
    margin: 0 30px;
    text-decoration: none;
    color: #fff;
}

footer img {
    border-radius: 15px;
    opacity: 0.8;
}

.bio {
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bio img {
    max-width: 200px;
    border-radius: 50%;
    margin-right: 20px;
    float: left;
}

.bio p {
    clear: both;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-size: 24px;
    margin: 0;
    padding: 0px 0;
}

.header-content h1 {
    margin: 0;
    padding: 0;
}

.contact-section {
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    font-family: 'Exo', sans-serif;
    font-size: 24px;
    color: #333;
    text-decoration: none;
    display: block;
    text-align: center;
    margin: 20px 0;
}

.logo .dotcom {
    color: #4CAF50;
}
