html,
body {
    height: 100%;
}

.orbitron-600 {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    height: 70vh;
}

.clock-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.clock-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.clock-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ccc;
}

.clock {
    max-width: 400px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 3rem;
    color: #fff;
    background-color: #000;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 600px) {
    .clock-title {
        font-size: 2rem;
    }

    .clock-description {
        font-size: 1rem;
    }

    .clock {
        font-size: 2.5rem;
        padding: 10px;
    }
}