:root {
  color: #1c1c1c;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background-color: #f2f0eb;
  background-image:
    radial-gradient(circle at 1px 1px, rgb(82 75 65 / 12%) 1px, transparent 0),
    linear-gradient(135deg, rgb(255 255 255 / 45%), transparent 55%);
  background-size:
    12px 12px,
    100% 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header,
footer {
  overflow: hidden;
}

header {
  height: clamp(4rem, 12vw, 9rem);
}

footer {
  height: clamp(3.5rem, 9vw, 6.5rem);
}

header img,
footer img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

main {
  flex: 1;
  margin: 0 auto;
  max-width: 1200px;
  padding: 3rem 1.5rem;
  width: 100%;
}

.image-sequence {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 840px;
}

.image-sequence img {
  aspect-ratio: 3 / 5;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.notice {
  margin: 3rem auto;
  max-width: 42rem;
  text-align: center;
}

h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 2rem;
}

address {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-style: normal;
  gap: 0.35rem;
}

a {
  color: inherit;
  text-underline-offset: 0.16em;
}

a:hover,
a:focus-visible {
  color: #555;
}

.linkedin-link {
  display: inline-flex;
  justify-content: center;
  margin: 0.65rem auto 0;
  width: 1.75rem;
}

.linkedin-link svg {
  fill: currentColor;
  height: 1.75rem;
  width: 1.75rem;
}

@media (max-width: 640px) {
  main {
    padding: 2rem 1rem;
  }

  .image-sequence {
    grid-template-columns: 1fr;
  }

  .image-sequence img {
    aspect-ratio: 3 / 4;
  }

  .notice {
    margin-top: 2rem;
  }
}
