@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    background-color: #1c4885;
    color: #ffffff;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 95vh;
    box-sizing: border-box;
    padding: 0;
}

.swiper-container {
    width: 100%;
    height: 80vh;
}

.swiper-wrapper {
    display: flex;
    height: 100%;
}

.swiper-slide {
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.swiper-button-next, .swiper-button-prev {
    color: red; /* Change button color to red */
    margin-top:24vh;
}

.swiper-button-next {
    right: 10px;
    bottom: 20px; /* Position the next button at the bottom */
}

.swiper-button-prev {
    left: 10px;
    bottom: 20px; /* Position the previous button at the bottom */
}

.text {
    width: 100%;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    background-color: #1e1e1e;
    border-radius: 10px;
}

.text h1 {
    font-size: 2em;
    margin: 0.5em 0;
    font-weight: 700;
}

.text p {
    font-size: 1em;
    margin: 0.5em 0;
}

.text a {
    color: ##fff;
    text-decoration: none;
}

.text a:hover {
    text-decoration: underline;
}
.header-text {
    width: 100%;
    text-align: center;
    font-weight: bold;
    padding: 10px 0;
    background-color: #1e1e1e; /* Optional: Add background color to the header */
    color: #ffffff; /* Optional: Add text color to the header */
}

.header-text a {
    color: #1e90ff;
    text-decoration: none;
}

.header-text a:hover {
    text-decoration: underline;
}
.button-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #ffffff;
    background-color: #1e90ff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button-link:hover {
    background-color: #1c86ee;
}

@media (max-width: 600px) {
    .swiper-container {
        height: 60vh; /* Adjust height for mobile devices */
    }

    .container {
        height: 80vh; /* Adjust container height for mobile devices */
    }

    .text {
        margin-top: 5px; /* Reduce margin to fit the text better on mobile */
    }
}
