* {
  box-sizing: border-box;
  font-family: Verdana, sans-serif;
}

body {
  background-color: rgba(153, 237, 173, 0.862);
  padding: 0 5px 5px 5px;
}

.pasta-image, .bowl-image, .pizza-image {
  max-width: 350px;
  width: 100%;
  display: block;
  margin: 20px auto;
  box-shadow: 3px 3px 3px 2px rgb(81, 79, 79);
}

.pasta-image {
  max-width: 525px;
}

.green-link {
  background-color: rgb(1, 101, 11);
  color: white;
  padding: 15px;
  font-size: 1.7rem;
  font-weight: 500;
  display: inline-block;
  margin: 5px 0px 15px 0px;
  text-align: center;
 }

.green-link:hover {
   box-shadow: 3px 3px 3px 2px rgb(137, 134, 134);
}

h1 {
  font-size: 60px;
  text-align: center;
  margin: 5px;
}

h3 {
  font-size: 35px;
  margin: 30px 0px 10px 0px;
}

p, ul, ol {
  font-size: 24px;
  margin: 0px;
}

.unordered-link {
  font-size: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  width: 200px;
}

.recipe-links {
  list-style-type: none;
  display: flex;
  justify-content: space-evenly;
  padding: 0px;
  flex-flow: wrap;
  gap: 50px;
}

.home-heading {
  margin: 20px 0px 30px 0px;
}

.previous, .next, .back-to-top {
  font-size: 1.3rem;
  width: 200px;
  height: 58px;
  flex-shrink: 0;
  margin-bottom: 0;
  padding-top: 16px;
}

.bottom-links {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin: 15px 0 10px 0;
}

.next-and-top-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

a {
  text-decoration: none;
}

.homepage-image {
  height: 200px;
  width: 200px;
  object-fit: cover;
}