html {
  font-size: 18px;
}
body{
  width: 100vw;
  overflow-x: hidden;
}
.navbar-header{
  display: flex;
}

.page-content{
  margin-top:10vh;
}

.subcontainer {
  position: relative; /* Container should be relative */
  height: 100vh;
  overflow: hidden;
}

.text-item {
  position: absolute; /* Position items absolutely */
  cursor: pointer;
  margin: 10px;
  min-width: 50vw;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.text-item:hover {
  color: #007bff; /* Optional: Change text color on hover */
}

.navbar{
  width: 100vw;
  padding: 1rem;
  position: fixed;
  top:0;
  left:0;
  font-family: 'Courier New', Courier, monospace;
  text-transform: lowercase;
}

.nav-link.active {
  text-decoration: underline;
  font-weight: bold;
}

.navbar-nav{
  margin-right: auto;
}

.modal-body{
  text-align: center;
}
.modal-content{
  border-radius: 0;
}

.modal-header, .modal-body, .modal-footer{
  border: 0;
}

.imageNote{
    color: black;
    margin-top: 2rem;
}

.img-thumbnail{
    width: 10rem;
    height: auto;
    display: block;  /* Makes the image a block element for centering */
    margin: 0 auto; /* Center the image */
}

.modal{
    width: 100vw;
    height: 100vh;
}

@media (max-width: 991.98px) {
  html {
    font-size: 14px;
  }
  .img-thumbnail{
    width: 100%;
    height: auto;
  }
}

@media (max-width: 767.98px) {
    html {
        font-size: 12px;
    }
    .img-thumbnail{
        width: 100%;
        height: auto;
    }
}

#scrollDownBtn {
    position: fixed;
    bottom: 20px;
    border-radius: 50%;
    right: 20px;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: background 0.3s;
    z-index: 2000;
}

#scrollUpBtn {
    position: fixed;
    bottom: 75px;
    right: 20px;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: background 0.3s;
    z-index: 2000;
}




