* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: black, transparent;
}

.hero {
    width: 100%;
    height: 100vh;
    color: white;
    background-image: url("./Images/4.jfif");
}

.clock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    text-align: center;
}

.time {
    width: 100%;
    height: 35vh;
    background-color: rgba(0, 0, 0, 0.6); /* black with 60% opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* space between blocks */
}

.time .unit {
    text-align: center;
}

.time span {
    font-size: 120px;
    font-weight: 600;
    color: white;
    display: block;
}

.time p {
    font-size: 24px;
    color: white;
    margin-top: 10px;
    font-weight: 400;
}

.colon {
    font-size: 120px;
    font-weight: 600;
    color: white;
    align-self: center;
}
