/* Global Styles */
body {
    font-family: Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
}

/* Header Styles */
.header {
    background-color: #0A1A2B;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

.header .logo {
    width: auto;
    height: 100%;
    position: absolute;
}

/* Wrapper Styles */
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Information Styles */
.info,
.about {
    padding: 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    background-color: #1f1f1f;
    color: #e0e0e0;
}

.info h2,
.about h2 {
    margin: 0;
    font-size: 24px;
    font-family: 'Arial', sans-serif;
}

.info h2 {
    font-weight: bold;
}

/* Image Slider Styles */
.imageSlider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 10px;
}

.imageSlider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Media Query for mobile devices */
@media (max-width: 600px) {
    .imageSlider {
        grid-template-columns: 1fr;
    }
}

.about p {
    margin: 0;
    font-size: 18px;
}

/* Footer Styles */
.footer {
    background-color: #0A1A2B;
    text-align: center;
    padding: 20px;
    color: #F5F5F5;
}

.footer h3 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.fa {
    padding: 20px;
    font-size: 30px;
    width: 70px;
    text-align: center;
    text-decoration: none;
}

.fa:hover {
    opacity: 0.7;
}



/* Dark Mode Styles
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }

    .header,
    .footer {
        background-color: #0A1A2B;
    }

    .info,
    .about {
        background-color: #1f1f1f;
        color: #e0e0e0;
    }

} */