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

h1 {
  font-size: 30px;
}

h2, h3 {
  color:black
}

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

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

aside {
  flex: 1;
}

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

.card p {
  text-align: justify;
  font-size: 25px;
}

footer {
  padding: 200px;
  color:black;
  font-size: 25px;
  background-color: #ffffff;
  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;
}

.container {
  display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: 120px;
    gap: 10px;
}