* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Futura";
  src: url("/futura-webfont/FuturaStdBook.woff2") format("woff2"),
    url("/futura-webfont/FuturaStdBook.woff") format("woff");

  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Futura";
  src: url("/futura-webfont/FuturaStdBold.woff2") format("woff2"),
    url("/futura-webfont/FuturaStdBold.woff") format("woff");

  font-weight: bold;
  font-style: normal;
}

:root {
  --fonts-size-base: 1.2rem;
  --fonts-size-lg: 2.5rem;
}

body {
  font-family: "Futura", Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--fonts-size-base);
  letter-spacing: 0.02em;
  background-color: rgb(247, 247, 247);
  color: rgb(19, 19, 19);
}

main {
  margin-bottom: 6rem;
}

section {
  padding-inline: 2.5rem;
  max-width: 50rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 6rem;
}

.intro {
  text-align: center;
  text-wrap: balance;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
}

h1,
h2 {
  font-size: var(--fonts-size-lg);
  font-weight: normal;
  text-transform: uppercase;
}

h3 {
  font-size: var(--fonts-size-base);
  font-weight: normal;
}

p {
  line-height: 1.4;
}

img.logo {
  width: 18rem;
}

ul {
  list-style: none;
}
/* 
.content li {
  margin-bottom: 0.7rem;
  font-size: var(--fonts-size-lg);
  border-bottom: 1px solid #1d1d1d;
} */

address {
  font-style: normal;
}

a {
  text-decoration: none;
  color: inherit;
}

@media screen and (width < 768px) {
  :root {
    --fonts-size-lg: 1.8rem;
  }

  img.logo {
    width: 15rem;
  }
}
