@import url("https://fonts.googleapis.com/css?family=Muli&display=swap");

:root {
  --primary: #9abd97;
  --secondary: #646536;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  min-height: calc(100vh - 60px);
  font-family: "Muli";
}

p {
  margin-bottom: 5px;
}

h3 {
  margin: 0;
  font-weight: bold;
  font-size: 3rem;
}

h5 {
  margin: 10px 0;
  font-size: 1.5rem;
}

li {
  margin-bottom: 0;
}

.meal {
  margin: 100px 0;
  font-size: 1.5rem;
  /* border: solid red 1px; */
  background-color: #9abd97;
}

.text-center {
  text-align: center;
}

.button-primary {
  color: #fff;
  background-color: var(--secondary);
  border-color: #33c3f0;
  height: 38px;
  padding: 0 30px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
}

.img-info {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

img {
  max-width: 100%;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


