/* Base */
body {
  font: normal 18px/1.4 serif;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem;
  background-color: #fafafa;
}

hr {
  margin: 12px 0;
  border: none;
  border-top: 1px solid #d0d0d0;
}

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

a:hover {
  text-decoration: underline;
}

/* Layout */
.container {
  width: 100%;
  max-width: 700px;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Main */
main {
  margin-bottom: 20px;
}

main img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 450px;
}

/* Footer */
.icons {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1em;
}

.icons a {
  font-size: 21px;
  transition: transform 0.3s;
  display: inline-block;
}

.icons a:hover {
  transform: scale(1.2);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    font-size: 16px;
    padding: 0.75rem;
  }

  main img {
    max-height: 300px;
  }
}

