@import url(https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;600&display=swap);
#application {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-menu {
  z-index: 6;
  position: relative;
  text-decoration: none !important;
  color: black;
}

a {
  text-decoration: none !important;
  color: black;
}

body {
  background-color: #FFFEFB;
  background-size: 40px 40px;
  background-blend-mode: hard-light;
  background-image: radial-gradient(circle, rgb(105, 105, 105) 0%, rgb(116, 116, 116) 7%, rgb(255, 254, 251) 8%);
}

.gallery-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.gallery-container a {
  width: 20rem;
  height: 20rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.gallery-container a img {
  width: 100%;
}

@media (max-width: 992px) {
  #menu {
    width: 100%;
    display: flex;
    justify-content: center;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    margin-top: 2.5rem;
    gap: 2rem;
  }
  #menu span {
    cursor: pointer;
    position: relative;
    text-align: center;
  }
  #menu span svg {
    position: absolute;
    left: -1rem;
    transform: scale(0.8);
    bottom: -0.9rem;
  }
}
@media (min-width: 993px) {
  #menu {
    width: 100%;
    display: flex;
    justify-content: end;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    margin-top: 2rem;
    margin-right: 3rem;
    margin-left: -6rem;
  }
  #menu span {
    margin-right: 2rem;
    cursor: pointer;
    position: relative;
  }
  #menu span svg {
    position: absolute;
    left: -0.5rem;
    bottom: -0.5rem;
  }
}
