*{
    padding:0;
    margin:0;
}
body{
    background-color: rgb(141, 176, 180);
}
#boxouter{
    height: 200px;
    width: auto;
    margin: 2rem 15rem;
    background-color:rgb(0, 0, 0);
    border: 2.5px solid white;
    /* box-shadow: 5px 5px 10px 10px rgba(0, 0, 0, 0.5); */
    border-radius:40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#boxinner{
    height: 40%;
    width: 80%;
    border-radius: 50px;
    border: 2px solid white;
    border: 1px solid black;
    background-color: rgb(248, 255, 123);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
   
}

.p:hover{
    box-shadow: 5px 5px 10px 10px rgba(0, 0, 0, 0.5);
}
.search{
    height: 30%;
    width: 59px;
    margin: 2px;
    border-radius: 70px;
    border:10px solid yellow;
    border-top :10px solid #4ECDC4;
    border-bottom :10px solid #4ECDC4;
    animation: spinAnimate 2s ease-in 0s infinite normal ;

}
@keyframes spinAnimate {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }   
}
#stopwatch{
    margin:2rem 15rem;
    padding: 1rem 21rem;
    display: flow-root;
}
#circle{
    height: 200px;
    width: 200px;
    border: 2px solid white;
    border-radius: 100px;
    background-color: black;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    
}
#number{
    height: 20%;
    width: 90%;
    border: 2px solid white;
    border-radius: 100px;
    background-color: black;
    display: inline-block;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 40px;
    
}
#buttun{
    height: 4rem;
    width: 100%;
    border: 2px solid white;
    border-radius: 100px;
    background-color: black;
    display: inline-block;   
    display: flex;
    justify-content:space-evenly;
    align-items: center;
}
button{
    height: 35px;
    width: 50px;
    border-radius: 10px;
    color: white;
    background-color:black;
}
button:hover{
    border: 4px solid white;
}
button:active{
    background-color: rgb(255, 229, 111);
    color: black;
    
}