body{
    margin: 0;
    background-image: url(background.jpeg);
    background-position: right;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#clock-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#clock{
    font-family: monospace;
    font-size: 4rem;
    font-weight: bold;
    backdrop-filter: blur(5px);
    width: 100%;
    text-align: center;
    color: white;
    background-color: hsla(0, 0%, 0%, 0.26);
}