body {
    margin: 0;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size:10px;
    background: #FFA5AB;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }

  /* header {
    background-color: #A8E063;
    opacity: 0.5;
    padding: 60px;
    text-align: center;
    color: rgb(28, 26, 26); 
  } */
  
  .scene {
    width: 300px;
    height: 200px;
    perspective: 1000px;
    margin-bottom: 20px;
  }
  
  .carousel {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s;
  }
  
  .carousel__cell {
    position: absolute;
    width: 100%;
    height: 100%;
    line-height: 200px;
    font-size: 2em;
    color:#0e0f15;
    text-align: center;
    opacity: 0.9;
    border: 2px solid #0cf;
    box-shadow: #FCF6A8;
    cursor: pointer;
    background-image:url(assets/br.jpeg);
   



  }

  
  
  .controls {
    text-align: center;
  }
  
  button {
    background: #A8E063;
    border-radius: 10px;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    margin-top: 20%;
  }
  
  /* Modal styles */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:#FFA5AB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
  }
  
  .modal.hidden {
    display: none;
  }
  
  #videoPlayer {
    width: 80%;
    max-width: 800px;
    border: 2px solid #c9d5d8;
    border-radius: 8px;
  }
  
  #closeModal {
    margin-top: 10px;
    background: #ff3333;
    padding: 5px 10px;
    border: none;
    font-size: 1.5em;
    color: #fff;
    cursor: pointer;
  }
  

  .flash-button {
    display: inline-block;
    padding: 0.75em 1.5em;
    font-size: 1.1em;
    text-decoration: none;
    /* background-color: #ffa07a; */
    color: white;
    border-radius: 8px;
    animation: flash 1s infinite;
    margin-top: 1.5em;
  }

  @keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .flash-button{
   margin-right: 70%;
  }

  body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-image:url(assets/br.jpeg) ;
    color: #333;
  }
  header {
    background-color: #A8E063;
    opacity: 0.5;
    border-radius: 2%;
    padding: 60px;
    /* text-align: center; */
    color: rgb(28, 26, 26); 
  }
  header h1 {
    margin: 0;
    font-size: 2.5em;
  }
  .intro {
    padding: 40px 20px;
    text-align: center;
  }
  .intro p {
    font-size: 1.2em;
    max-width: 800px;
    margin: auto;
  }
  .interactive-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    margin-top: 10%;
  }
  .interactive-box {
    background:#A8E063 ;
    opacity: 0.9;
    border: 2px solid #ffb6c1;
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.2s;
  }
  .interactive-box:hover {
    transform: scale(1.05);
  }
  .interactive-box button {
    background:#FFA5AB ;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    font-family:monospace;
    border-radius: 10px;
    cursor: pointer;
    margin-top:5%;
  }
  .flash-button{
    margin-top: 3%;
    margin-right: 60%;
  }