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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #1d1d35;
    font-family: 'Arial', sans-serif;
}

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

.clock {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #ff0844, #ffb199);
    border-radius: 20px;
    padding: 20px 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-box span {
    font-size: 60px;
    font-weight: bold;
    color: white;
}

.time-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-top: 5px;
}

.colon {
    font-size: 60px;
    color: white;
    margin: 0 15px;
}