/* body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  color: #fff;
} */

body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    background: linear-gradient(to right, #514de9, #514de9);
    /* background: linear-gradient(to right, #6b78ec, #6b63e2); */
    transition: background-color 0.5s ease; 
}


/* Multi-colorful Text */
.multicolor {
    background: linear-gradient(to right, #f58529, #dd2a7b, #8134af, #515bd4, #283e51);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Typewriter Animation */
.typewriter {
    display: inline-block;
    overflow: hidden; /* Ensures the text is not visible outside the containing element */
    border-right: .15em solid orange; 
    white-space: nowrap; /* Keeps the text in one line */
    font-size: 1.7pc; /* Adjust font size relative to the screen size */
    font-family: audiowide;
}


@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange }
}

/* Colorful Text */
.typewriter {
    background: linear-gradient(to right, #f58529, #dd2a7b, #8134af, #515bd4, #283e51);
    -webkit-background-clip: text;
    color: transparent;
}

/* Cursor Style */
.typewriter::after {
    content: "|"; /* Custom cursor */
    animation: blink 0.75s step-end infinite;
    font-size: 1.2em;
}


@keyframes blink {
    50% { opacity: 0 }
}
@media screen and (max-width: 768px) {
    .typewriter {
      font-size: 15px; /* Adjust font size for smaller screens */
    }
  }
@media screen and (max-width: 550px){
    .typewriter{
        font-size: 11px;
    }
}
  @media screen and (max-width: 480px) {
    .typewriter {
      font-size: 8px; /* Adjust font size for even smaller screens */
    }
}
/* styles for the image */
.body-img img {
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: auto;
  }
  
  /* Media query for smaller screens */
  @media (max-width: 768px) {
    .body-img img {
        width: 450px;
        height: auto;
    }
  }
  
  /* Another media query for even smaller screens */
  @media (max-width: 480px) {
    .body-img img {
      width: 450px;
      height: auto;
    }
  }

/* Submit Button */
.submit-btn button{
    /*
    background-color: #007bff; 
    border-color: #007bff;
    */
    background-color: #13ec4d;
    border-color: #13ec4d;
    color: black;
    padding: 8px;
    border-radius: 10px;
    font-weight: 400;

  }

  /* Hover effect for .btn-primary */
  .submit-btn button:hover {
    border:2px solid dodgerblue;
    background-color: white;
    color: dodgerblue;
}


#body {
  font-family: 'Arial', sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

#container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color:#13ec4d;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#output {
  margin-top: 20px;
}

#voiceoverText {
  margin-top: 10px;
  padding: 10px;
  background-color: #eee;
  border-radius: 4px;
  white-space: pre-wrap;
}

#voiceoverAudio {
  margin-top: 10px;
}

.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {
      opacity: 0;
  }

  to {
      opacity: 1;
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }

  to {
      opacity: 1;
  }
}


/* media query for navbar */
#logoWithBrand{
  display: none;
}

@media (max-width: 1350px) {
  .slideSpeakerTitle img{
    display: none;
  }
}

@media (max-width: 1050px) {
  #brandName{
     display: none;
  }
  #companyLogo{
     display: none;
  }
  #logoWithBrand{
     display: block;
  }
}
@media (max-width: 767px) {
  #brandName{
     display: block;
  }
  #logoWithBrand{
     display: none;
  }
  #companyLogo{
     display: block;
  }
}
@media (max-width: 450px) {
  #brandName{
     font-size: 30px;
  }
  #brandImg{
     width:80px;
  }
}
@media (max-width: 375px) {
  #brandName{
     font-size: 25px;
  }
  #brandImg{
     width:70px;
  }
}
@media (max-width: 330px) {
  #brandName{
     font-size: 20px;
  }
  #brandImg{
     width:60px;
  }
}
@media (max-width: 330px) {
  #navbarTitle{
    font-size: 30px;
  }
  #navbarLogo{
    height: 50px;
  }
}
@media (max-width: 300px) {
  #navbarTitle{
    font-size: 25px;
  }
  #navbarLogo{
    height: 40px;
  }
}
@media (max-width: 250px) {
  #navbarTitle{
    font-size: 20px;
  }
  #navbarLogo{
    height: 35px;
  }
}

/* media query for alterContainer */
@media (max-width: 1050px){
  #alertContainer1{
    margin-top: 70px;
  }
  #alertContainer{
    margin-top: 70px;
  }
}

@media (max-width: 767px){
  #alertContainer1{
    margin-top: 10px;
  }
  #alertContainer{
    margin-top: 10px;
  }
}