* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
}

html,
body {
  margin: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.website-title {
  font-weight: bold;
  font-size: 1.3rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  border-bottom: lightgrey 2px solid;
}

@media (max-width: 600px) {
}

.nav {
  display: flex;
  gap: 15px;
}

main {
  padding: 25px;
}

.search {
  display: flex;
  justify-content: space-between;
}

.search input {
  border: none;
}

.search button {
  border: none;
  border-radius: 8px;
  padding: 5px;
  background-color: #1a8082;
  color: white;
}

.entree-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 500px));
  grid-template-rows: repeat(auto-fit, minmax(232px, 1fr));
  grid-gap: 20px;
  margin-top: 30px;
}

@media (max-width: 600px) {
  .entree-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(232px, 1fr));
    grid-gap: 20px;
    margin-top: 20px;
  }
}

.entree {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: 8px;
  border: #1a8082 2px solid;
  background-color: #e8f2f3;
  padding: 10px;
}

.entree img {
  width: 130px;
  border-radius: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.entree .entree-options {
  display: flex;
  justify-content: space-between;
  color: #1a8082;
}

.entree-container a {
  text-decoration: none;
  color: inherit;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #dddddd;
}

@media (max-width: 600px) {
  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #dddddd;
    font-size: 12.5px;
  }
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  font-size: inherit;
  gap: 5px;
}

.contact-wrapper p {
  font-weight: bold;
  font-size: inherit;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info a {
  text-decoration: none;
  color: black;
  font-size: inherit;
}

.terms {
  display: flex;
  gap: 10px;
}

.terms p {
  font-size: inherit;
}
