:root {
  --color-first: #d3e4cd;
  --color-second: #adc2a9;
  --color-third: #99a799;
  --color-third-trans: #4449427a;

  --color-pallet-first: #fef5ed;
  --color-first: #d3e4cd;
  --color-second: #adc2a9;
  --color-third: #99a799;
}

body {
  background-color: var(--color-first);
  font-family: "Montserrat", sans-serif !important;
}

.navbar {
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar__logo {
  margin: 32px 0;
}

.navbar__logo-image {
  height: 24px;
}

.navbar__links {
  width: 200px;
  display: flex;
  justify-content: space-between;
}

.navbar__link {
  color: var(--color-third);
  text-decoration: none;
}

.navbar__link--active {
  border-bottom: 1px solid var(--color-second);
}

.socials {
  width: 100%;
  height: 48px;
  background-color: var(--color-first);
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
}

.socials__links {
  width: 700px;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
}

.socials__link {
  color: var(--color-third);
  text-decoration: none;
  padding: 0 16px;
  display: flex;
  align-items: center;
  font-size: 1.75rem;
}

@media screen and (min-width: 481px) {
  .navbar {
    font-size: 1.15rem;
  }
}

@media screen and (min-width: 769px) {
  .navbar {
    font-size: 1.25rem;
  }

  .navbar__links {
    width: 250px;
    padding: 16px 0;
  }

  .navbar__logo-image {
    height: 32px;
  }
}

@media screen and (min-width: 1025px) {
  .navbar {
    font-size: 1.35rem;
  }
}
