body{
    background-image: url(Background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;

}

#clock-container {

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
}

#clock {
    
    font-family: monospace;
    font-size: 6.5rem;
    font-weight: bold;
    text-align: center;
    background-color: #000;
    color: #fff;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    width: 100%;
}