body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-size: 1.2rem;
    background-image: url("/img/red-theme-dw5.jpg");
    mask-repeat: no-repeat;
    background-size: cover;
}

#title{
    text-align: center;
    font-size: 3.5em;
    color: whitesmoke;
    text-shadow: 2px 4px 5px rgb(170, 150, 150);
}

#clock-container{
    background-color: rgb(45, 45, 45);
    text-align: center;
    padding: 2rem;
    width: fit-content;
    margin: 10% auto;
    border-radius: 0.5rem;
    border: rgb(47, 47, 47) 3px solid;
}

#clock{
    background-color: rgb(104, 2, 2);
    color: rgb(202, 32, 32);
    text-shadow: 2px 4px 5px rgb(37, 33, 33);
    font-size: 9rem;
    font-weight: 500;
    display: flex;
    padding: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 1rem;
    border: rgb(72, 1, 1) 4px solid;
}

@media (max-width: 600px) {
    #title{
        margin-top: 10%;
        font-size: 2em;
        background-image: url("/img/wp.jpg");
        mask-repeat: no-repeat;
        background-size: cover;
    }

    #clock-container{
        padding: 0.8rem;
        margin: 50% auto;
    }

    #clock{
        font-size: 3.5rem;
        padding: 0.5rem;
    }

}