body {
    background-color: #008080;
    padding: 20px;
    display: flex;
    justify-content: center;
}

#responsive-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    font-size: small;
}

#responsive-nav .menu-item {
    padding: 3px 8px;
}

.SampleTitle {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-size: xx-large;
    font-weight: bold;
}

.crew-info-title {
    margin-top: 50px;
    margin-left: 5%;
    font-size: small;
}

.crew-info-text {
    margin-top: 10px;
    margin-left: 5%;
    margin-right: 5%;
    font-size: small;
}

.values-body {
    margin-left: 5%;
    margin-right: 5%;
}

.big-number-container {
    display: flex;
    flex-direction: column;
    justify-content: right;
    margin-bottom: 15px;
}

.big-number {
    font-size: 45px;
    font-weight: bolder;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 3px;
}

.big-number-description {
    font-size: small;
    display: flex;
    justify-content: center;
}

.big-number-image {
    height: 30px;
    width: 30px;
}

.big-number-image-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.title-banner-container {
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 50px;
}

.big-number-card {
    width: 300px;
    margin-top: 10px;
    /* Added for smooth transition */
    transition: transform 0.3s ease-in-out;
    /* Added to ensure the element can be transformed correctly */
    transform-origin: center center;
}

/* New style for hover effect */
.big-number-card:hover {
    /* Adjust the scale value (e.g., 1.05 for 5% bigger) */
    transform: scale(1.05);
    /* Optional: Add a shadow to enhance the "lifted" effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Optional: Change cursor to indicate interactivity */
    cursor: pointer;
}

.values-title {
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;
    font-size: large;
}

.subtitle {
    margin-top: -10px;
    margin-bottom: 20px;
    text-align: center;
    font-size: large;
}

#instagram-advertise-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.upcoming-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.upcoming {
    width: 60%;
    font-size: small;
}

.main-window {
    width: 80%;
    max-width: 800px;
    height: auto;
    min-height: 400px;
}

.instagram-advertise {
    display: flex;
    align-items: center;
    font-size: medium;
}

.videos {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
}

.title-banner {
    width: 100%;
}

.about-banner {
    width: 100%;
    margin-left: 5%;
    margin-right: 5%;
}

/* Full screen overlay to block interaction */
.modal-overlay {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black background */
    z-index: 1000;
    /* Ensure it's on top of everything */
    justify-content: center;
    align-items: flex-start;
    /* Start a bit higher up the screen */
    padding-top: 100px;
}

/* Class to make the modal visible */
.is-visible {
    display: flex;
    /* Show the overlay */
}

.footer {
    display: flex;
    justify-content: right;
    align-items: center;
    margin-bottom: -5px;
    margin-right: 20px;
}

.instagram-link {
    display: flex;
    margin-left: 10px;
    font-size: small;
    align-items: center;
}

.Sample-name-footer {
    margin-left: 10px;
}

@media (max-width: 600px) {
    .main-window {
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-shadow: none;
        border: none;
    }

    .upcoming {
        width: 100%;
    }
}

@media (max-width: 950px) {
    .big-number-card {
        width: 30vw;
        margin-top: 10px;
    }
}

@media (max-width: 700px) {
    .big-number-card {
        width: 100%;
        max-width: 300px;
        margin-top: 10px;
    }

    .title-banner-container {
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 50px;
    }
}