html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: palevioletred;
  display: flex;
  flex-direction: column;
  margin: 0;
}

header {
  background-color: lightpink;
  padding: 10px;
  text-align: center;
}

nav {
  margin: 10px 0;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #f9f9f9;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.content {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
}

.border {
  border: 4px solid #333;
}

.welcome-image,
.community-image {
  max-width: 45%;
  height: auto;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  max-width: 90%;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-container img {
  flex: 0 1 45%;
  max-width: 45%;
  height: auto;
  margin: 0;
}

.hero-container p {
  flex: 1 1 45%;
  text-align: left;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.recipe-img {
  max-width: 250px;
  width: 100%;
  height: auto;
  display: block;
  border: 4px solid #333;
}

.center-text {
  text-align: center;
  margin-top: 20px;
}

footer {
  background-color: gainsboro;
  text-align: center;
  padding: 25px 0;
  width: 100%;
  border-top: 3px solid #d6d6d6;
}

footer p {
  margin: 0;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.5px;
}