body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #4a3927;
}

h1 {
  font-size: 30px;
}

h2, h3 {
  color:black
}

.jumbotron {
    font-size: 30px;
    padding: 40px;
    background-color: #b69574;
    text-align:center;
    color: rgb(8, 6, 6);
}

nav {
    background-color: #4a3927;
    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;
}

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;
  font-size: 12px;
}

footer {
  padding: 20px;
  color:black;
  font-size: 25px;
  background-color: #4a3927;
  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: 100px;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  padding: 20px;
  display: flex;
}

.profile img {
  width: 200px;
}
