body {
    height: 100%;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    background-color: black;
    background-image: url('../images/33.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}


h1.text-primary {
    color: mediumpurple !important;
    font-weight: 700;
    width: 861px;
    max-width: 100%;
    margin: 21px auto 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 4.5rem !important;
    text-shadow: 2px 2px 8px rgba(71, 77, 117, 0.4);
}

h2 {
    font-size: 3rem;
    width: 589px;
    max-width: 100%;
    letter-spacing: 2px;
    margin: 39px auto 0;
    line-height: 1.2;
    font-weight: 700;
}


h3 {
    letter-spacing: 0px;
    line-height: 1.4;
    font-weight: 300;
    font-size: 1.875rem;
    text-transform: none;
    width: 814px;
    max-width: 100%;
    margin: 43px auto 0;
}

.section {
    padding: 2rem;
    border-radius: 10px;
    max-width: 100%;
}

.image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    margin: 0.5rem;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary {
    background-color: #d63384;
    border: 2px solid #d63384;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #d63384;
}

.btn-4 {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-4:hover {
    background-color: white;
    color: #d63384;
}

footer {
    margin-top: 1rem;
}

footer a {
    color: white;
    text-decoration: underline;
}

.launch-time {
    margin: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    min-width: 130px;
    max-width: 130px;
    flex-shrink: 1;
    padding: 1rem;
    margin: 0 5px; 
    position:  relative;
}

.time-number {
    font-size: 2.5em;
    margin-bottom: 0px;
    font-family: 'Arial', sans-serif;
}

.time-label {
    font-size: 0.9em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    max-width: 100%;
}

.colon {
    font-size: 2.5em;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    h1.text-primary {
        font-size: 2.5em !important;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1rem;
    }

    .buttons {
        flex-direction: column;
    }

    .time-number {
        font-size: 3em;
    }

    .time-label {
        font-size: 0.8em;
    }

    .time-box {
        padding: 2rem;
        min-width: 100px;
        max-width: 100px;
    }

    .colon {
        font-size: 3em;
    }
}

@media (max-width: 576px) {
    .launch-time {
        flex-direction: row; /* Keep it in a row */
        padding: 0;
    }

    .time-number {
        font-size: 1.6em; /* Further reduced font size */
    }

    .time-label {
        font-size: 0.6em;
        height: 0.6em;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .time-box {
        min-width: 70px; /* Further reduced width */
        padding: 0.5rem;
        min-width: 75px;
        max-width: 75px;
    }

    .launch-time > .colon:nth-last-child(2) {
        display: none;
    }

    .colon {
        font-size: 2em;
    }

    .time-box:last-child {
        display: none;
    }
}