@font-face {
  font-family: "Helvetica";
  src: url("/assets/fonts/Helvetica-Light.woff2") format("woff2"),
    url("/assets/fonts/Helvetica-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica";
  src: url("/assets/fonts/Helvetica-Bold.woff2") format("woff2"),
    url("/assets/fonts/Helvetica-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  font-family: "Helvetica";
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  background-color: #1c1c1c;
  color: #fff;
}

a { color: #fff; text-decoration: none; }
a:hover { text-decoration: underline; }

header#site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.logo {
  width: 8rem;
  height: auto;
}

section {
  padding: 0.5rem;
}
#images {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.5rem;
}
#images figure {
  margin: 0;
}
#images img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

#content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 1rem;
}
h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  text-align: center;
}
.button {
  padding: 0.75rem 3rem;
  border: 3px solid #fff;
  border-radius: 99rem;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: 0.2s ease all;
}
.button:hover {
  border-color: #333;
  text-decoration: none;
}

footer#site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.logo-dark {
  width: 18rem;
  height: auto;
}

p em {
  letter-spacing: 5px;
  font-style: normal;
}

@media (max-width: 768px) {
  #images {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
