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

body {
  font-family: "Garamond";
  width: 100%;
}

header {
  background-color: lightgray;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

/* .h1-tag {
  text-align: center;
} */

/* h1 {
  color: hsl(0, 40%, 100%);
  font-weight: 400; 400 to 800 values only
  font-size: 4rem;
  text-align: center;
} */

.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.logo {
  padding-right: 20px;
}

.site-logo {
  font-family: "Times New Roman", Times, serif;
  font-size: 2rem;
  font-weight: bold;
  color: hsl(180, 9%, 98%);
  background-color: hsl(0, 83%, 50%);
  border: 1px solid black;
  border-radius: 10px;
  padding: 2px 10px 6px 10px;
}

.nav-buttons {
  margin: 10px;
}

.nav-buttons li a {
  font-family: sans-serif;
  text-decoration: none;
  color: hsl(0, 2%, 10%);
}

.nav-buttons li a:hover {
  text-decoration: underline;
}

.nav-buttons {
  display: flex;
  gap: 2rem;
}

.nav-buttons li {
  font-size: 1.5rem;
  list-style-type: none;
}

@media (max-width: 720px) {
  .nav-buttons {
    gap: 1rem;
  }
}

@media (max-width: 660px) {
  header {
    display: inline;
  }

  .logo {
    padding: 0;
  }

  .site-logo {
    text-align: center;
    border: none;
    border-radius: 0;
  }

  .flex-row {
    justify-content: center;
    background-color: lightgray;
  }
}

@media (max-width: 460px) {
  .nav-buttons li {
    font-size: 1rem;
  }

  .site-logo {
    border-radius: 0;
  }
}

@media (max-width: 330px) {
  .nav-buttons {
    overflow: auto;
    white-space: nowrap;
  }
}

/* For screens 740px maximun */
/* @media (max-width: 740px) {
  .site-logo {
    text-align: center;
    margin: 0 auto;
  }
  .navbar {
    display: flex;
    height: 7rem;
    background-color: hsl(0, 5%, 88%);
  }
  .nav-buttons {
    justify-content: center;
    padding-top: 1.4rem;
  }
} */

/* For screens 520px maximun */
/* s@media (max-width: 520px) {
  .site-logo {
    text-align: center;
    margin: 0 auto;
  }
  .navbar {
    display: block;
    height: 7rem;
    background-color: hsl(0, 5%, 88%);
  }
  .nav-buttons {
    justify-content: center;
    padding-top: 1.4rem;
  }
} */

/* footer {
  border: 1px solid black;
} */

/* .icons {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
}

.badge-icons {
  height: 5rem;
  padding: 0 0.5rem;
} */

/* @media (max-width: 666px) {
  .banner {
    height: 15rem;
    }
    h1 {
    font-size: 3.5rem;
  }
  .icons {
    margin: 0 auto;
    padding-top: 2rem;
    flex-wrap: wrap;
    row-gap: 3rem;
  }
}

@media (max-width: 440px) {
  .banner {
    height: 20rem;
  }
} */
