.watchButton{
    text-align: center;
    margin-top: 3%;
    margin-bottom: 5%;

}



.stopwatch{
    text-transform: uppercase;
    background-color:lavender;

}
.stopwatch:hover{
    border-color: maroon;
}

.container{
    height: 250px;
    width:50%;
    background-color:wheat;
    margin: auto;
    box-sizing: content-box;
    border-radius: 10px;
    
}
.timeDisplay{
    margin-top: 10%;
    margin-left: 10%;
    height:50px;
    width: 100px;
    border-radius: 10px;
    text-align: center;
    background-color: burlywood;
    color:black;
    font-weight: bold;
}

.textButton{
    text-align: center;
    justify-content: space-around;
    display: flex;
    margin-top: 2%;
}

.timeButton{
    height:50px;
    width: 100px;
    border-radius: 10px;
    background-color: blue;
    color:beige;
    text-transform: uppercase;
}

 .timeButton:hover{
    background-color: chocolate;
 }

.timeBlink{
    font-weight: Bold;
    font-style: Bold;
    margin-left:45px;
    
    animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
    to {
      visibility: hidden;
    }
  }