@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-size: 18px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    background-color: rgb(234, 234, 234);
    color: #333;
}

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

.content .day {
    margin-bottom: 2px;
    font-size: 1.5em;
    color: #333;
    text-shadow:
        -2px -1px 1px rgba(80, 230, 250, 0.8),
        3px 3px 3px rgba(57, 150, 147, 0.7),
        0 0 0 rgba(15, 245, 237, 1);
}

.clock_content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clock .text {
    font-size: 2.5em;
    color: #333;
    text-shadow:
        -2px -1px 1px rgba(80, 230, 250, 0.8),
        3px 3px 3px rgba(57, 150, 147, 0.7),
        0 0 0 rgba(15, 245, 237, 1);
}
