@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body, button {
  font-family: "Montserrat", sans-serif;
}

input, button {
  outline: none;
  border: 0;
}

a {
  text-decoration: none;
  color: #0f0f0f;
  transition: .4s;
  position: relative;
}

a:hover {
  color: #c60f0f;
}

main {
  width: 100%;
  height: 100%;
  margin: 50px 100px 10px;
}

.modal-is-open {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

#page-home,
#page-post,
#page-tag,
#page-search
#page-not-found {
  display: flex;
  min-height: 100vh;
  height: auto;
}

/* @import
  "./components/header.scss",
  "./components/header.scss", 
  "./components/post.scss",
  "./components/footer.scss",
  "./pages/home.scss",
  "./pages/post.scss",
  "./responsive/home.scss",
  "./responsive/post.scss"; */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 100px;
}

header img {
  width: 250px;
}

header ul {
  display: flex;
  list-style: none;
}

header ul li {
  margin: 0 15px;
}

header ul li a {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 700;
}

header a::before {
  content: "";
  display: flex;
  position: absolute;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #c60f0f;
  transition: width .4s;
}

header a:hover::before,
header a.link-active::before {
  width: 100%;
}

.button-menu {
  display: none;
}

@media (max-width: 1100px) {
  header ul {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10;
  }

  header ul.showMenu {
    display: flex;
  }

  header ul li {
    margin: 8px 0;
  }

  header ul li a {
    color: white;
    font-size: 30px;
  }

  .button-menu {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
    z-index: 10;
  }

  .button-menu span {
    width: 100%;
    height: 3px;
    background-color: #c60f0f;
    position: relative;
    transition: .4s;
  }

  .button-menu span::before,
  .button-menu span::after {
    content: "";
    width: 100%;
    height: 3px;
    left: 0;
    position: absolute;
    background-color: #c60f0f;
    transition: .4s;
  }

  .button-menu span::before {
    top: 8px;
  }

  .button-menu span::after {
    bottom: 8px;
  }

  .button-menu.active span {
    background-color: transparent;
  }

  .button-menu.active span::before {
    transform: rotate(45deg);
    top: 0;
    width: 2rem;
  }

  .button-menu.active span::after {
    transform: rotate(-45deg);
    bottom: 0;
    width: 2rem;
  }
}
@media (max-width: 550px) {
  header {
    padding: 0 30px;
  }

  main {
    margin: 0 30px;
  }

  header img {
    width: 200px;
  }
}
footer {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.icons {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.icons i {
  margin: 0 10px;
}

#page-home main {
  display: grid;
  place-items: center;
  text-align: center;
  height: 100vh;
}

main strong {
  font-size: 100px;
}

main p {
  font-size: 40px;
  font-weight: 700;
  margin-top: 10px;
  color: #9e1111;
}
