@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;800;900&display=swap);

html {
  height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

*:focus {
  outline: none;
}

body {
  height: 100%;
  background-color: #fff;
  font-family: "Inter", "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* CONTAINER */
.container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* SCREEN READER ONLY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

main {
  flex-grow: 1;
}

/* base */
b,
strong {
  font-weight: 600;
}

/* header */
.header {
  padding: 16px 0;
}

.logo {
  display: flex;
  margin: 0;
  font-size: 35px;
}

.logo__link {
  text-decoration: none;
  color: inherit;
}

/* hero */
.hero {
  padding: 20px 0;
}

.hero__title {
  margin-top: 0;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 600;
  font-size: 26px;
}

.hero__description {
  margin-top: 0;
  font-size: 16px;
  padding: 5px 10px;
  background-color: #f6f6f6;
  border-radius: 10px;
}

.hero__description:not(:last-child) {
  margin-bottom: 5px;
}

/* contact */
.contact__link {
  background-color: #f6f6f6;
  padding: 10px;
  border-radius: 10px;
  color: #0597f3;
}
