@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
}

h1{
    font-family: 'Roboto',sans-serif;
    font-weight:bolder;
    font-size: 40px;
    /* margin-top: 50px;
    margin-left: 20px; */
    text-align: center;
    color: white;
}
#background-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    z-index: -1;
  }
@media (max-width: 100%) {
    #background-video { display: none; }
    body {
        font-family: 'Roboto',sans-serif;
        margin: 0;
      background: url("https://assets.codepen.io/6093409/river.jpg") no-repeat;
      background-size: cover;
    }
  }

  .wrapper{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }

.container {
    /* margin: 0 auto; */
    background-color: #ffffff;
    min-height: 300px;
    width: 50%;
    /* min-width: 500px; */
    /* position: absolute; */
    /* transform: translate(-50%, -50%); */
    /* top: 50%; */
    /* left: 50%; */
    /* padding: 30px 40px; */
    padding: 30px ; 
    
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    /* padding-bottom: 50px; */
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

#Box_title{
    text-shadow: crimson 2px 0 10px;
    color: white;
    text-align: center;
    font-family: 'Roboto',sans-serif;
    font-weight:bolder;
    font-size: 30px;

}

#countdown {
    /* position: relative; */
    width: 30%;
    background: #272727;
    /* left:25%; */
    font-family: 'Roboto mono', monospace;
    color: #ffffff;
    margin-top: 10px;
    /* margin-left: 50px; */
    margin-bottom: 10px;
    font-size: 40px;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(65, 5, 145, 0.25);
}

.btn-container{
    width: 60%;
    min-height: 60px;
    margin: 0px auto 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    
}

.btn{
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    border-radius: 8px;
    color: #fff;
    background-color: #2d2d2d;
    border: 2px solid #2d2d2d;
    padding: 15px 30px;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.2s;
    /* box-shadow: 0 0 10px 	black; */
}

.btn:hover{
    background-color: white;
    color: #2d2d2d;
    box-shadow: none;

}



.container2 {
    margin-right: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: center;
    margin-top: 50px;
  }

  .controls{
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 30px;
    bottom: 30px;
  }
  
  .controls button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
  }

  .control-btn{
    text-shadow: 	#ffe700 1px 0 10px;
    background-color: transparent;
    color: white;
    opacity: 0.8;
    border: none;
    font-size: 12px; 
  }

  #pauseButton{
    display: none;
  }

  #stopButton{
    display: none;
  }

  #nextButton{
    display: none;
  }





