body {
    font-family: 'quicksand', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f7f5;

}

h1 {
    font-size: 30px;

}

h2, h3 {
    color:black;

}

.jumbotron {
    padding: 60px;
    background-color: #cccf0d;
    text-align:center;
    color: rgb(8, 6, 6);
}
 
nav {
    background-color: #e27209;
    padding: 5px;
    position: sticky;
    top: 0;
}

nav ul {
    padding-inline: 4rem;
    display: flex;
    gap: 2rem;
}

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

}

nav a {
    font-size: 28px;
    font-weight: 400;
    text-decoration: none;
    color: rgb(12, 3, 3);

}

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: #faf8f8;

}

aside {
    flex: 1;

}

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

.card p {
    text-align: justify;
}

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

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

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

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

.profile img {
    width: 200px;
}