body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80vh;
  margin: 0;
  font: 20px Helvetica, sans-serif;
  color: #1D2424;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  background-color: #f1ead2;
}

h1 {
  font-size: 2.5em;
}

article {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  box-sizing: border-box;
}

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

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

.imgcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

img {
  max-width: 25%;
  height: auto;
}

/* responsive test mobile */
@media (max-width: 600px) {
  h1 {
    font-size: 1.8em;
  }

  body {
    padding: 10px; /
  }

  article {
    padding: 10px; 
  }
}
