html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: var(--text-inverse);
  background-color: var(--bg-primary);
}

a {
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 60px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 60px;
  padding-right: 60px;
}
.header .header__logo .logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.header .header__logo .logo .logo svg {
  display: inline-block;
  vertical-align: baseline;
}
.header .header__logo .logo-icon {
  width: 12px;
  height: 12px;
  align-self: flex-start;
}
.header .header__logo .logo-text {
  width: 120px;
  height: auto;
}
.header .header__nav .header__link {
  line-height: 1;
  position: relative;
  padding-bottom: 8px;
}
.header .header__nav .header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--bg-inverse);
}
.header .header__nav .header__link:hover::after {
  width: 100%;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .logo-text--large {
  width: 620px;
  height: 100px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 900px;
  padding: 50px 0;
}
.footer .social {
  display: flex;
  gap: 20px;
}
.footer .social .social__link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.2s ease;
}
.footer .social .social__link:hover {
  color: #D93240;
}
.footer .social .social__link .social__link-icon {
  height: 24px;
  color: inherit;
}/*# sourceMappingURL=brothoud.css.map */