:root{
    --primary-bg:#073791fd;
    --secondary-bg:#112d60e4;
    --third-bg: #07204ff9;
    --text-color:#caca83;
    --text-hover:white;
    --text-footer:#e0e2eb;
}

*{
    margin: 0;
    padding: 0;
    font-family: 'simple_ronde', sans-serif;
}
main{
    margin: 10px;
}
/* Banner */
.carousel-item {
    position: relative;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(13, 36, 71, 0.199);
}
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 2s ease-in-out;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
    z-index: 0;
}

.carousel-text-container {
    position: absolute;
    top: 90%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    color: var(--text-color);
    background-color: rgba(0,0,0, 0.5);
    padding: 10px 0;
    font-size: 28px;
    font-weight: bold;
    z-index: 1;
}

