body {
    background-color: whitesmoke;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
}


h1 {
text-align: center;

}

h2{
    margin-top: 100px;
}


a{
    font-size: 20px;
}


.carbon-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 20px;    
    text-align: left;
    margin-top: 100px;
    max-width: 1204px;
    /* this is for the width of the container center */
    width: 100%;
    margin: 0 auto;
}
.carbon-container {
    text-align: left;
}

li {
    text-align: left;
    font-size: 20px;
    /* margin-top: 20px; */
    font-weight: 500;
}

.carbon-container h2{
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.image-wrapper {
    max-width: 100%;
    margin: 1rem;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
}


/* Responsive design for container */
#c-container {
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

#c-conatiner h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Responsive design for  image */
.image-wrapper {
    max-width: 100%;
    margin: 1rem;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
}

/* Media query for smaller screens */
@media only screen and (max-width: 600px) {
#c-container h3 {
    font-size: 1.5rem;
    }
}

h2, h3 {
    margin-bottom: 50px;
    text-align: center;
    font-size: 25px;
    
}

.nav-bar {
    margin: 5px;
    margin-top: 10px;
}

#footer {
    text-align: center;
    color: black;
}


.mdx-post p {
    text-align: left;
    padding: 5px;
    line-height: 2rem;
}

.mdx-post li {
    text-decoration: underline;
}



.slider {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    display: flex;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-out;
}

.slider-slide {
    flex-shrink: 0;
    width: 100%;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    color: white;
    font-size: 24px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}