:root {
  --text: #1f2937;
  --colorAqua: #11bb96;
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3 {
  color: var(--title);
}

.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.roboto-normal {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.nunito-thin {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}
.nunito-normal {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.nunito-bold {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

nav {
  padding-top: 1em;
  padding-right: 30px;
  display: flex;
  justify-content: end;
}

nav > a {
  margin-right: 25px;
  border-bottom: 2px solid #fff;
}

nav > a:hover {
  border-bottom: 2px solid var(--colorAqua);
}

a {
  text-decoration: none;
  color: var(--text);
}

#main-pic {
  height: 400px;
}

#logo-icon {
  width: 55px;
}

main {
  margin: 7em auto;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#logo {
  height: 100px;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#logo > img {
  height: 70px;
  width: auto;
}

#logo > h1 {
  margin-left: 0.25em;
  font-size: 56px;
}

#slogan {
  font-size: 20px;
  margin: 0 0 2em 4.5em;
}

.site-footer {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto 32px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.95rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 520px) {
  .footer-links {
    gap: 16px;
  }
}
