/* Adjust margins for portrait orientation */
@media (orientation: portrait) {
  :root {
    --home-title-font-size: 60px;
  }
}

/* Adjust margins for landscape orientation */
@media (orientation: landscape) {
  :root {
    /* --home-title-font-size: 100px; */
    --home-title-font-size: 60px;
  }
}


.slideshow-container {
  margin: auto;
}

.mySlides {
  top: 0px;
  left: 0;
  width: 100%;
  height: calc(100vh - var(--navBarHeight));
  display: flex;
  justify-content: flex-start;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mySlides img {
  width: 100%;
  object-fit: cover;
  flex-shrink: 0;
}


.name-text-area {
  pointer-events: none;
  position: absolute;
  top: 50px;
  left: var(--sideBarWidth);
  width: calc(100vw - var(--sideBarWidth));
  max-width: 100vw;
  height: calc(100% - 50px);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.name-text {
  padding: 0;
  margin: 0;
  max-width: 100vw;
  /* calc(20px + 0.25vw); */
  /* font-size: var(--home-title-font-size); */
  /* padding: 10px 20px; */
}

.name-text p {
  background-color: black;
  color: white;
  font-size: calc(20px + 0.25vw);
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
