.about-wrapper{
        height: 100vh;
        width: 100vw;
        position: fixed;
        top: 0;
        left: 0;
        overflow: hidden;
        z-index: 10;
        /* background: green; */
        /* text-align: center; */
        font-family: ModernDos;
}


.about-speaker-holder{
    position: fixed;
    top: 0;
    /* display: flex; */
    height: 20vh;
    align-items: center;
    align-content: center;
    justify-content: space-around;
    width: 92.5%;
    padding-top: 10px;
    padding-left: 10px;
    transition: all 0.75s ease;
}

.speaker-dialogue-box{
    display: flex;
    width: 97.5%;
    margin-left: 20px;
    border: 5px solid #eab2a1;
    border-radius: 10px;
}

#about-speaker-img{
    height: 20vh;
    width: 20vh;
    /* padding: ; */
}

#about-speaker-img img{
    max-width: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    /* border-radius: 50%; */
    overflow: hidden;
}

.about-speaker-name{
    margin-left: 60px;
 width: auto;
 max-width: 400px;
    min-width: 80px;
    text-align: center;
    color: white;
    background-color: #eab2a1;
    border: 5px solid #eab2a1;
    border-bottom: none;
    text-shadow: 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black;
    border-radius: 5px;
    font-size: 1.6em;
    text-transform: uppercase;
    margin-top: 5px;
}

.about-dialogue-holder{
    position: fixed;
    bottom: 0;
    height: 40vh;
    width: 100%;
    border-top: 5px solid #993e9c;
    background: rgb(78, 5, 78, 0.9);
    color: white;
    overflow-y: auto;
    transition: all 0.75s ease;
}

#about-speaker{
    height: 20vh;
    width: 100%;
    /* border-radius: 20px; */
    overflow-y: auto;
    background: rgb(78, 2, 30, 0.7);
    font-size: 2.1em;
    border-left: 5px solid #eab2a1;
    color: white;
    text-shadow: 0 0 4px black, 0 0 4px black, 0 0 4px black, 0 0 4px black;
    text-align: left;
}

/* SCROLLBAR */
#about-speaker::-webkit-scrollbar {
    width: 10px;
    background: #eab2a1;
  }
  #about-speaker::-webkit-scrollbar-track {
    border-left: 1px #eab2a1 solid; 
  }
  
  #about-speaker::-webkit-scrollbar-thumb {
    background: white; 
  }
  
  #about-speaker::-webkit-scrollbar-thumb:hover {
    background: white; 
  }

  #about-speaker::-webkit-scrollbar-button:single-button {
    display: block;
    border-style: solid;
    height: 13px;
    width: 16px;
  }
  
  /* Up */
  #about-speaker::-webkit-scrollbar-button:single-button:vertical:decrement {
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent white transparent;
  }
  
  #about-speaker::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
    border-color: transparent transparent white transparent;
  }
  /* Down */
  #about-speaker::-webkit-scrollbar-button:single-button:vertical:increment {
    border-width: 8px 8px 0 8px;
    border-color: white transparent transparent transparent;
  }
  
  #about-speaker::-webkit-scrollbar-button:vertical:single-button:increment:hover {
    border-color: white transparent transparent transparent;
  }

#about-speaker p{
    padding: 15px 30px;
}

#about-dialogues{
    font-size: 2em;
    padding-left: 70px;
    padding-right: 70px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    /* align-content: space-around; */
    justify-content: space-around;
}

#about-dialogues .dialogue-button:hover{
    cursor: pointer;
    color: #e451df;
}

#about-dialogues .dialogue-button{
    padding: 5px 0;
}

#about-dialogues .dialogue-button p::before{
    content: '\2B9A';
    padding-right: 5px;
    opacity: 0;
}

#about-dialogues .dialogue-button:hover p::before{
    opacity: 1;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 90; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #dfd2c9;
  margin: auto;
  padding: 20px;
  border: 2px solid #5c534e;
  color: #5c534e;
  font-family: ModernDos;
  width: 80%;
  max-height: 80%;
  overflow: auto;
}

.modal-content p{
  padding: 20px 40px;
  font-size: 1.5em;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}


@media(max-width: 1300px) {
    #about-dialogues, #about-speaker{
        font-size: 1.6em;
    }
    
  }
@media(max-width: 850px) {
  .modal-content p{
    padding: 20px 10px;
    font-size: 1.2em;
  }
  }

  
@media(max-width: 700px) {
    #about-dialogues, #about-speaker{
        padding: 0 20px;
        font-size: 1.5em;
    }

    .about-speaker-name{
        max-width: 40vw;
    }


    .about-dialogue-holder{
        height: 42.5vh;
    }

    .about-speaker-holder{
        height: 57.5vh;
    }
    
    
  }


  @media(max-width: 700px) {
#about-speaker p{
    padding: 10px;
}
  }
  
  .go-down{
    transform: translateY(100%);
  }