#videos {
    background-color: black;
    color: white;
}


.video-container {
    text-align: center;
    width: 80%; 
    margin: 0 auto; 
    cursor: pointer;
    z-index: 999; 
}

.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
}

.text-1 {
    text-align: center;
    font-weight: bolder;
    font-size: 40px;
    color: #c59655;

}


.text-2 {
    text-align: center;
    margin-bottom: 5px;
    font-size: 16px;
}


.video-container.full-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1000;
background-color: rgba(0, 0, 0, 0.9);;
}


.video-container.full-screen iframe {
    width: 100%;
    height: 100%;
}
#fullmode-button {
    width: 100%;
    height: 50px;
    background-color: black;
    color: #c59655;
    border-radius: 10px;
    cursor: pointer; 
    font-size: 25px;
    
}