body {
    font-family: "Quicksand", sans-serif;
    margin: 0;
    padding: 0;
}

header {
display: inline;
}

h2, h3 {
color: #faa930;
}

.jumbotron {
    font-size: 20px;
    padding: 20px;
    background-color: #4a3927;
    text-align: center;
    color: white;
}

.jumbotron h1:hover {
    font-weight: bold;
    font-size: 50px;
}

nav {
    background-color: #814e01;
    padding: 10px;
    position: sticky;
    top: 0;
}


nav ul {
    padding: 5px;
    display: flex;
    gap: 2rem;
}

nav li {
    display: inline;
    list-style-type: none;
    margin-right: 20px;
}

nav a {
    font-size: 18px;
    font-weight: 20px;
    text-decoration: none;
    color: white;
}

nav a :hover {
    font-weight: bold;
    font-size: 30px;
}

main {
    padding: 20px;
    display: flex;
    gap: 1.5rem;
}

#content {
    flex: 5;
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem 2rem;
    background-color: #4a3927;
}

aside {
    flex: 1;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 20px;
    background-color: #b69574;
}

.card p {
    text-align: justify;
}

footer {
    padding: 20px;
    color: black;
    font-size: 25px;
    background-color: #4a3927;
    text-align: center;
    font-weight: bold;
}

.profile header {
    text-align: 100%;
}

.featured-header {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    object-position: center;
}

.featured-image-header {
    width: 100px;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    padding: 20px;
    display: flex;
}

.profile img {
    width: 200px;
}