img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: "Manrope", sans-serif !important;
  letter-spacing: 0.03rem;
}

main a {
  position: relative;
}

main a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: black;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

main a:hover:before {
  visibility: visible;
  width: 100%;
}

.no-link-decoration:hover:before {
  visibility: hidden !important;
}