@fcharset "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;
	}
img{padding:20px;background-color:#fff;border: 2px solid #fff}

footer {
    text-align: center;
    margin-top: 25px;
    font-size: 16px;
}
/* NEW STYLES REQUIRED */
.align-left {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    width: 215px;   
}

.align-right {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

.clear {
    clear: both;
}

.flex-container {
    display: flex;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

section {
    width: 65%;
}

.feature-box {
    width: 30%;
}

p {
    margin-left: 0;
}

/* NAV link pseudo classes ONLY inside nav */
nav a:link {
    color: purple;
    text-decoration: none;
}

nav a:visited {
    color: darkmagenta;
}

nav a:hover {
    color: black;
    text-decoration: none;
}

		



