.title-logo-page {
  height: 100vh;
  width: 100%;
  background-image: url("./assets/img/sink-cropped.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  justify-content: start;
  min-height: fit-content;
}

@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */
  .title-logo-page {
    background-attachment: scroll;
  }
}

.title-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60vw;
}

.full-logo {
  width: 60%;
  max-width: 800px;
  height: auto;
  /* Black shadow with 10px blur */
  filter: drop-shadow(5px 5px 10px #2d2d2dff);
}

@media (orientation: portrait) {
  .full-logo {
    width: 100%;
  }
}
