body{

background: linear-gradient(90deg, #ff0080 0%, #ff8c00 50%, #40e0d0 100%);
    color: aliceblue;
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    
}
.container{
    border: .3vw solid wheat;
    width: 35vw;
    height: 49vmax;
    
    justify-self: center;
    margin-top: .8vw;
    border-radius: 3vw;

     background: linear-gradient(45deg, #0f2027 0%, #203a43 40%, #2c5364 100%);
     box-shadow: 5px 20px 60px;
     padding: 20px;
}
 h1{
    color:  wheat;
    font-size: 2vw;
 }
 .score-section{
    display: flex;
    justify-content: center;
    justify-content: space-evenly;
    margin-top: .5vw;
   
 }
 .score-box{
    background-color: wheat ;
    color: #2c5364;
    width:14vw ;
    height: 7vw;
     border-radius: 1vw;
     color:#2c5364;
     font-size: .8vw;
 }
 .score{
    font-size: 2vw;
    font-weight: 15vw;
 }

 .timer-section{
    margin-top: 1vw;
    font-size: 1vw;
 }
 .timer{
    color:wheat;
    font-size: 3vw;
 }
 .button-section{
    display: flex;
    flex-direction: column;
    gap: .6vw;
    align-items: center;
    /* border: 2px solid red; */
    margin-top: 1vw;
    
 }
 .click-btn{
    width: 25vw;
    height: 4vw;
    border-radius: 1vw;
    /* border: 2px solid red; */
    color: white;
    font-size: 2vw;
    background-color: #ff0080;
 }
 .click-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.6);
}

.click-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(245, 87, 108, 0.4);
}
.click-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}
 .start-btn{
    width: 30vw;
    height: 3vw;
    border-radius: 1vw;
    background-color: wheat;
     color: rgb(0, 0, 0);
    font-size: 1.5vw;
 }
 .start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.6);
}

.start-btn:active {
    transform: translateY(0);
}

 .pause-btn{
    width: 30vw;
    height: 3vw;
    border-radius: 1vw;
    background-color: rgb(243, 103, 81);
     color: rgb(0, 0, 0);
    font-size: 1.5vw;
 }
  .pause-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.6);
}

.pause-btn:active {
    transform: translateY(0);
}
 .resume-btn{
   display: none;
    width: 30vw;
    height: 3vw;
    border-radius: 1vw;
    background-color: rgb(127, 247, 63);
     color: rgb(0, 0, 0);
    font-size: 1.5vw;
 }
  .resume-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.6);
}

.resume-btn:active {
    transform: translateY(0);
}
.reset-btn{
    width: 30vw;
    height: 3vw;
    border-radius: 1vw;
    background-color: rgb(251, 137, 75);
     color: white;
    font-size: 1.5vw;
}
.reset-btn:hover {
    background: #ee5a5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(254, 0, 0, 0.6);
}
.status-message{
    font-size: 1.5vw;
    margin-top: 3vw;
}
.vido{
   display: none;
   width: 100%;
   height: 0vh;
   z-index: -1;
}
#vio{
   width: 100%;
}