@charset "UTF-8";
/* CSS Document */
body {
    background-image: url("../images/background.jpg"); /* put your bokeh here */
    background-size: cover;
    background-attachment: fixed;
    font-family: Georgia, serif;
    margin: 0;
    padding: 0;
}

#wrapper {
    width: 80%;
    max-width: 1000px; /* narrow like Cami */
    margin: 0 auto;
    background-color: #f7cdd7;
    padding: 20px;
    border: 3px solid #5e514d;
}

header h1 {
    text-align: center;
    font-size: 42px;
    font-style: italic;
    color: #4a3b37;
}

nav {
    text-align: center;
    margin: 15px 0;
}

nav a {
    margin: 0 20px;
    color: purple;
    text-decoration: none;
    font-size: 20px;
}

h2 {
    font-size: 28px;
    font-style: italic;
    color: #4a3b37;
    border-bottom: 2px solid #4a3b37;
    padding-bottom: 4px;
}

h3 {
    font-size: 22px;
    color: #4a3b37;
    margin-top: 20px;
}

.profile {
    display: flex;
    gap: 20px;
}

.profile img {
    width: 250px;
    border: 4px solid white;
}

p, li {
    font-size: 18px;
    color: black;
}

footer {
    text-align: center;
    margin-top: 25px;
    font-size: 16px;
}
		
		

