@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,700|Quattrocento:700');
header {
  background-color: #f8f9fa; /* Light grey background */
  /* padding: 20px; */
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2); /* Shadow for a bit of depth */
  top: 0;
}

header div {
  display: flex;
  flex-direction: row;
  align-items: center; /* Center the logos vertically */
  justify-content: center; /* Center the logos horizontally */
}
header h1 {
  text-align: center; /* Center the title */
  font-size: 4vh; /* Make the title larger */
  margin-bottom: 0.5vh; /* Add some space below the title */
  margin-top: 1vh;
}

header img {
  height: 3vh;
  object-fit: contain; /* Ensure the logos maintain their aspect ratio */
}

body {
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
  background-color: #f8f9fa; /* Light grey background */
  color: #333; /* Dark grey text */
  top: 0;
}

.outerContainer {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #f5f5f4;
  }
  .container-fluid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
  }
  
  #ps_container {
    position: relative;
    width: 100%;
    /* height: 100vh; */
  }
#ink_parent {
    position: absolute;
    left: 0; /* Add this */
    bottom: 5vh;
    right: 0;
    /* border: 10px solid green; */
    z-index: 2;
    max-height: 25vh;
    }
  
  #ink_overlay {
    /* display: inline-block;  */
    flex-direction: column; /* Uncomment this */
    text-align: center;
    overflow: auto;
    max-height: inherit;
    justify-content: center;

  }
  #ink_overlay > * {
    display: inline-block; /* Add this */
  }



  .scroll-text {
    position: relative;
    bottom: 0vh;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0);
    font-size: 2vh;
    height: 5vh;
    color: #0a0a23;
    text-align: center;
    z-index: 3;
    width: auto;
    margin: auto;
  } 
  .choice {
    display: inline-block;
    padding: 1% 1%;
    margin: 2%;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    font-size: 16px;
    cursor: pointer;
    animation: fadeIn 0.5s ease-in-out;
    width: auto;
    font-size: 2vh;
    
  }
  
#choicetext{
  color: white;
  overflow-wrap: break-word;
  

}
.choice a {
  text-decoration: none; /* Add this */
}
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    z-index: 9999;
    display: none;
    text-align: center;
  }
  
  #overlay.active {
    display: block;
  }

  @media (max-width: 478px) {
    #overlay-button{
      font-size: 14px;
      padding: 8px 16px;
    }
      video {
    /* display: block;
    margin: 0 auto; */
    width: 100%;
    height: 75vh;
  }
  #persona_image {
    max-width: 40%;
  }
  }

  @media (min-width: 479px) {
    #persona_image {
      max-width: 40%;
    }
    video {
      /* display: block;
      margin: 0 auto; */
      width: 100%;
      height: 80vh;
    }
  }
  
  @media (min-width: 768px) {
    #persona_image {
      max-width: 40%;
    }
    video {
      /* display: block;
      margin: 0 auto; */
      width: 100%;
      height: 80vh;
    }
  }
  
  @media (min-width: 992px) {
    #persona_image {
      max-width: 20%;
    }
    video {
      /* display: block;
      margin: 0 auto; */
      width: 100%;
      height: 80vh;
    }
  }

  #overlay-button {
    display: inline-block;
    margin-top: 2vh;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #0a0a23;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #overlay-button:hover {
    background-color: #0062cc;
  }
  


