* {
  transition-duration: 0.4s;
}

body {
  margin: 0;
  padding: 0;
  background-color: #001a1c;
  font-family: "Lato", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h2 {
  font-size: 3em;
}

p {
  font-weight: 500;
  color: #fff;
}

a {
  color: #ed2024;
  text-decoration: none;
}

a:hover {
  color: #669966;
  text-decoration: none;
}

.text-red {
  color: #ed2024;
}

.text-green {
  color: #669966;
}

.wrapper {
  padding: 0 10%;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.brand {
  display: flex;
  justify-content: center;
  z-index: 1;
}
.brand img {
  width: 200px;
  height: auto;
  margin: 30px 0;
}

.menu-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  /* min-height: 93vh; */
  gap: 50px;
}

.menu-btn {
  height: 300px;
  border: solid 2px #fff;
  border-radius: 15px;
  color: #fff;
  padding: 30px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  /* background-image: url('../assets/bg-texture.jpg');
  background-position: center;
  background-repeat: no-repeat; */
}

.menu-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

#classic:hover {
  background-color: #ed2024;
  color: #fff;
}

#vegan:hover {
  background-color: #669966;
  color: #fff;
}

.menu-btn:hover .text-red,
.menu-btn:hover .text-green {
  color: #fff;
}

.menu-btn h2 {
  margin: 0;
  margin-top: 15px;
}

.menu-btn img {
  height: 150px;
}

.menu-btn#vegan img {
  height: 150px;
}

.footer {
  /* min-height: 7vh; */
  text-align: center;
  display: grid;
  align-items: center;
}

.footer p {
  margin: 30px 10px 10px 10px;
  font-size: 0.8em;
}

@media (max-width: 992px) {
  .menu-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .wrapper {
    padding: 50px 15% 0 15%;
  }

  .menu-btn img {
    width: 80%;
    max-width: 203px;
    height: auto;
  }

  .menu-btn#vegan img {
    width: 70%;
    height: auto;
  }
  .brand{
      z-index: 0;
  }
  .brand img {
    margin: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  /* .wrapper {
    padding: 30px 30px 0 30px;
  } */
  .menu-btn h2 {
    margin-top: 20px;
  }
  .brand img {
    width: 170px;
    height: 47.3167px;
  }
}

@media (max-width: 665px) {
  .wrapper {
    padding: 30px 30px 0 30px;
  }
  h2 {
    font-size: 2em;
  }
}

@media (max-width: 450px) {
}
