*{
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
}
body {
    background-color: #fffffffa;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.container {
    height: 400px;
    width: 400px;
    display:grid;
    grid-template-rows:35% 65%;
    align-items: center;
    border:3px solid #535353;
    border-radius:15%;   
    background-image: url('https://i.makeagif.com/media/6-29-2023/6LCY4x.gif');
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 2px 2px 2px solid #535353;
}
h1
{
    margin-top: 23px;
    font-size: 55px;
    text-align: center;
    /* padding: 0 1rem; */
    /* border:3px solid #31004a;
    border-radius: 15px; */
    background: linear-gradient(#00e5ff,#b91fdc);
    -webkit-background-clip:text;
    -webkit-text-fill-color: transparent;
}
.box
{
    height:100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.clock
{
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
    /* justify-content: center; */
    margin: 10px;
    width: 100%;
    height: 120px;
    color: #418dff;
    background-color:rgba(0, 0, 0, 0.231);
    /* position: relative; */
    border-radius: 13%;
    font-size: 65px;
    /* overflow: hidden; */
    border: 3px solid rgba(127, 127, 127, 0.094);

}
.clock p{
    font-size: 20px;
}
/* .clock::before{
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 90%;
    height: 8rem;
    background: linear-gradient(0deg, transparent,transparent,#2370f5,#2370f5,#2370f5);
    z-index: 1;
    transform-origin: bottom right;
    animation: animate 5s linear infinite;
}
.clock::after
{
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 90%;
    height: 8rem;
    background: linear-gradient(0deg, transparent,transparent,#b91fdc,#b91fdc,#b91fdc);
    transform-origin: bottom right;
    animation: animate 5s linear infinite;
    animation-delay: -3s;

}
@keyframes animate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
} */
.front-clock
{
    text-align: center;
    padding-top: 5px;
    background-color: #00000046;
    /* width: 95%;
    height: 95%; */
    /* border-radius: 1rem; */
    /* z-index: 1; */
}