@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primaryColor: #031323;
    --gradientTriAngle: linear-gradient(#00ff59, #5af752);
    --gradientCircle: linear-gradient(#f8ff00, #ff1100);
}

body  {
    background-color: var(--primaryColor);
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

body::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradientTriAngle);
    position: absolute;
    clip-path: polygon(20% 20%, 40% 50%, 20% 80%);
}

body::after {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradientCircle);
    position: absolute;
    clip-path: circle(20% at 75% 75%);
}

.container {
    position: absolute;
    margin: auto;
    width: 600px;
    height: 350px;
    background: rgba(255, 255, 255, .05);
    overflow: hidden;
    z-index: 10;
    backdrop-filter: blur(15px);
    text-align: center;
    color: #fff;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, .5);
    border-left: 1px solid rgba(255, 255, 255, .5);
    border-radius: 10px;
}

.clock {
    position: absolute;
    margin: auto;
    width: 500px;
    height: 250px;
    overflow: hidden;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    backdrop-filter: blur(15px);
    text-align: center;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, .5);
    border-left: 1px solid rgba(255, 255, 255, .5);
    border-radius: 10px;
}

.days {
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    padding: .5rem 1rem;
    text-transform: uppercase;
    color: #01060c;
    font-weight: bold;
}

.time {
    font-size: 4rem;
    margin: 2rem 0;
    color: #fff;
    font-weight: 300;
}

#date {
    font-size: 2.5rem;
    font-weight: 300;
}