@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,700|Quattrocento:700');
.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%;
  }
  
  #ps_container {
    position: relative;
    width: 100%;
    height: 85vh;
  }
video {
    /* display: block;
    margin: 0 auto; */
    width: 100%;
    height: 85vh;
  }

  .ink_parent {
    display: flex;
    /*flex-direction:initial ; */
    /* position: relative; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* max-height: 80vh; */
    height: 100%;
    align-items: center;
    

  }
  #ink_overlay {
    position: absolute;
    bottom: 2vh;  /* move the bottom block up */
    width: 100%;
    height: auto;
    max-height: 100%;
    z-index: 2;
    /* border: 10px solid red; */
    /* background-color: rgba(1, 1, 1, 0.5);  remove this later */
    overflow: auto;
    text-align: center;
    /* align-items: center; */
    

  }
  .scroll-text {
    position: absolute;
    bottom: 0vh;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0);
    font-size: 2vh;
    height: 5vh;
    color: #4CAF50;
    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;


}

  @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;
  }

  #maria_image {
    width: 100%;
    height: auto;
  }
  
  @media (min-width: 768px) {
    #maria_image {
      max-width: 50%;
    }
  }
  
  @media (min-width: 992px) {
    #maria_image {
      max-width: 30%;
    }
  }

  #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;
  }
  
  @media (max-width: 768px) {
    #overlay-button{
      font-size: 14px;
      padding: 8px 16px;
    }
  }

textarea {
    width: 25%;
    height: 15%;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    margin: 0 auto;
    display: block;
}

  @media (max-width: 768px) {
    textarea {
      width: 95%; /* Adjust the width */
      height: 150px; /* Adjust the height */
      font-size: 14px; /* Adjust the font size */
      padding: 8px; /* Adjust padding */
    }
  }


#controls {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff; /* Set the background color as needed */
  z-index: 1000; /* Adjust the z-index as needed to make sure it's on top */
  text-align: center;
}
#controls a {
  margin: 5px; /* Adjust the margin as needed */
  padding: 5px 10px; /* Adjust the padding as needed */
  text-decoration: none;
  background-color: #007bff; /* Set the button background color as needed */
  color: #fff; /* Set the button text color as needed */
  border-radius: 5px; /* Add rounded corners as needed */
}

