@import url("variables-6cb6ce045f5a52349ee69721cc796f08.css");

.page-accueil {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;

}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: space-around;
    flex: 1;
    overflow: auto;


}

.stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color:  var(--background-color);
    gap: 20px;
}
.stats-item {
    display: flex;
    align-items: center;
}
.stats-item img {
    width: 12vw;
    height: 12vw;
    margin-bottom: 20px;
}
.stats-item p {
    font-size: 5.5vw;
    color: #34495e;
    margin-left: 35px;
}

.explorer {
    display: flex;
}

.custom-button {
    font-size: 1.75rem;
    padding: 15px 50px;
    border-radius: 12px;

}

#carouselExampleAutoplaying{
    margin: 5px 20px 0;
}
.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.carousel-caption h5 {
    color: var(--background-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}









/* ------------------------- Media Queries ------------------------- */

@media (min-width: 480px) and (max-width: 768px) {
    .stats-item img {
        width: 6vw;
        height: 6vw;
    }

    .stats-item p {
        font-size: 3vw;
    }

    .custom-button {
        font-size: 1.75rem;
        padding: 15px 50px;
        border-radius: 12px;
    }

    #carouselExampleAutoplaying {
        width: 50vw;
        height: auto;
    }

}
/* Pc */
@media (min-width: 769px) {
    .page-accueil {
        flex-direction: row;
    }


    .stats-item img {
        width: 4vw;
        height: 4vw;
    }
    .stats-item p {
        font-size: 2vw;
    }
    .custom-button {
        font-size:2rem;
        padding: 20px 75px;
        border-radius: 12px;

    }
    #carouselExampleAutoplaying {
        width: 40vw;
        height: auto;
        margin-bottom: 10px ;
    }
    .content {
        margin: 10px 0;

    }


}