.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: opacity 1s linear;
    background-repeat: no-repeat;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 50%;
    padding: 100px 20px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: center;
    font-size: 34px;
    line-height: 1.5;
    border-radius: 10px;
    border: 6px solid #fff;
}

.carousel-nav {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.carousel-nav button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    margin: 0 10px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-nav button.active {
    width: 20px;
    background-color: #ffcc33;

}