@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500&family=Roboto:wght@300;400;500&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 80%;
  background-color: azure;
}

.search-meal {
  text-align: center;
  margin-bottom: 20px;
}

.search-meal h2 {
  font-weight: 100;
}

.meal {
  display: flex;
  flex: 2;
}

.side-bar {
  margin: 10px;
}

.main {
  margin: 10px;
}

#instructions  {
  line-height: 1.5;
}

#meal-image {
  width: 250px;
  border-radius: 5px;
}

#meal-video {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}

#meal-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.btn {
  background: #ac60a0;
  color: white;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  outline: none;
  border: none;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.btn:active {
  transform: scale(0.98);
}

.btn:hover {
  background: #c3739f;
}

@media (max-width: 475px) {
  .container {
    width: 100%;
  }
  .meal {
    flex-direction: column;
  }
  #meal-image {
    width: 100%;
  }
}