*{
    margin:0;
    padding:0;
}
body{
    background-color: #202020;
}
h1{
    color:white;
    text-align: center;
    font-weight: bold;
    font-size: 100px;
    padding:20px;
    text-decoration:underline;
}
.container{
    
    display:flex;
    justify-content:cener;
    align-items: center;
    height:100vh;
    flex-direction:column;
    padding: 10%;
}
#watch{
    font-size:100px;
    border: 2px solid blueviolet; 
    box-shadow:0px 0px 10px rgba(214, 187, 187, 0.5);
    padding:20px;
    color:white;
    border-radius:15px;
    margin-bottom:30px;
}
#buttons{
    display:flex;
}
button{
    padding:20px;
    background-color:#694343;
    border:none;
    border-radius:10px;
    color:white;
    font-size:larger;
    margin:10px;
    width:100px;
    box-shadow:5px 5px 1px rgba(97, 96, 96, 0.5);
    transition: all 0.5s;
}
button:hover{
    cursor: pointer;
    color:white;
    background-color: rgb(99, 96, 96);
}
button:active{
    box-shadow: none;
    transition: all 0.5s;
}
.first btn{
 border-radius: 20px;
}
