@import url('https://fonts.googleapis.com/css?family=Open+Sans:300|Playfair+Display:700&display=swap&subset=latin-ext');

html {
  box-sizing: border-box;
}

*,
::before,
::after {
  box-sizing: inherit;
}

html {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
}


body {
  margin: 0;
  padding: 20px;
  line-height: 1.6;
  color: #333;
  background-color: #FFEFEF;
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
}

h1,
.intro,
header {
  text-align: center;
  justify-self: center;
  margin-bottom: 20px;
}

.home_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

}

.home_content p {
  padding: 5px;
}

.menu {
  background-color: white;
  padding: 40px;

}

.container {
  width: 800px;
  justify-self: center;

}



.pictures {

  display: flex;
  justify-content: space-between;
}

.pictures img {
  width: 32%;

}

.dish {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 20px;
  max-width: 100%;
}

.dish img {
  width: 38%;
  border-radius: 10px;
}

.left .description {
  order: 1;
}

.left img {
  order: 2;
}

.button {
  display: block;
  background-color: #FFEFEF;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  border: 1px solid pink;
  margin-top: 10px;
  width: 150px;
  font-size: small;
}

footer {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
}
