* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-image: linear-gradient(0deg, #dd3c, #2dce);
}

header {
  width: 40rem;
  margin: 2rem auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

h1 {
  font-size: 3rem;
}

img {
  height: 200px;
  width: 250px;
  max-width: 35%;
  object-fit: cover;
  object-position: 0 60%;
  border-radius: 50%;
}

.background {
  width: 40rem;
  margin: auto;
}

.background header {
  margin: 0 0 1rem 0;
}

.background section {
  padding: 0 2rem;
}

.recipe {
  margin: 0 6rem;
}

.recipe header {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.info {
  width: 38rem;
  margin: 0 auto 2rem;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: rgb(255, 79, 79);
  box-shadow: 0 0 4px rgb(212, 106, 106);
}

.info div:nth-child(2) {
  height: fit-content;
  padding: .5rem;
  background-color: white;
  border-radius: .25rem;
}

section {
  margin-bottom: 3rem;
}

ul li {
  margin: .15rem 0;
  list-style: none;
}

ol {
  width: 40rem;
  margin: auto;
}

ol li {
  margin: 1rem 0;
}

aside {
  width: 40rem;
  margin: auto;
  padding: 1rem 0 3rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}