.featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.featured:nth-child(odd) {
  background-color: #252525;
  color: white
}

.featured-links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  z-index: 1;
}

.featured h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

.featured p {
  padding: 35px;
  margin-bottom: 50px;
}

.featured img {
  border-radius: 15px;
  position: relative;
  bottom: 5rem;
  z-index: 0;
  width: 60%;
  align-items: center;
  justify-content: center;
  box-shadow: -2px 5px 33px 6px rgba(0, 0, 0, 0.35);
}

/* specific to the home page */
footer {
  margin-top: 0;
}