h1{
    color: orange;
    text-align: center;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Jura;
}

.main-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;

}
 

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    margin-bottom: 2rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background-color: rgb(87, 82, 82);
    width: 560;
    height: 315;
    
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
    font-weight: 450;
}

h2 {
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.main-content p{
    margin-bottom: 1rem;
    color: #666;
    text-align: justify;
}

.carousel {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 2rem 0;
    overflow: hidden;
    background: #fff;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.arrow {
    width: 0;
    height: 0;
    border-style: solid;
}

.prev-arrow {
    border-width: 20px 35px 20px 0;
    border-color: transparent #d3d3d3 transparent transparent;
}

.next-arrow {
    border-width: 20px 0 20px 35px;
    border-color: transparent transparent transparent #d3d3d3;
}

@media (max-width:700px){
    .text-content p{
        padding: 25px;
    }
    .main-content p{
        margin-bottom: 0px;
    }

}