body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ensure the body takes up the full height of the viewport */
}

.slider-container {
    /* width: 35%; */
    max-width: 700px;
    margin: 0 auto;
    border-radius: 20px 20px 30px 30px; /* Set the desired border-radius value */
    overflow: hidden; /* Ensure the rounded corners are applied to the container */
    background-color: turquoise;
    text-align: center; /* Center the text within the container */
    /* display: flex; */
}
@media (max-width: 480px) {
    /* Styles for screens up to 480px wide */
    .slider-container{
        max-width: 400px;
    }
    }

.slider {
    width: 100%;
    display: flex;
    justify-content: center; /* Center the images horizontally within the slider */
}

.slider img {
    max-width: 100%;
    height: auto;
}
/* Custom styles for Slick arrows */
.slick-prev,
.slick-next {
    font-size: 24px;
    color: #000; /* Set the color of the arrows */
    background-color: #fff; /* Set the background color of the arrows */
    border: 2px solid #000; /* Set the border of the arrows */
    border-radius: 50%; /* Make the arrows circular */
    z-index: 1;
}

.slick-prev {
    left: 10px; /* Adjust the left position of the left arrow */
}

.slick-next {
    right: 10px; /* Adjust the right position of the right arrow */
}
.header-container {
    margin-top: 100px;
    display: flex;
    /* padding: 3em 2em; */
    flex-direction: row;
    justify-content: center;
}
header {
    text-align: center;
    padding: 10px;
    /* background-color: #e8d7d7; */
    position: auto;
    width: 100%;
    top: 0;
    z-index: 1000; /* Ensure the header appears above other content */

}

.titleWords{
    margin-top: 0;
}
h1 {
    margin: 20px;
}
h2 {
    margin: 0;
}
.slider-container {
    margin-top: 0; /* Adjust this value to create space below the header */
}
.text-center{
    text-align: center;
}
.bottomInfo{
    margin-top: 2rem;
    
}