* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 
                 Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Headers */
h1 {
    color: #10a37f;
    text-align: center;
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 40px;
    /* text-decoration: underline; */
}
h2 {
    color: white;
    font-size: 25px;
    text-align: center;
    /* text-decoration: underline; */
}
h3 {
    color: white;
    text-align: center;
    /* text-decoration: underline; */
    }
h4 {
    color: white;
    text-align: center;
}

/* Navigation Bar */
.navbar {
    width: 100%;
    background-color: #1c1c1e; 
    color: #fff;
    padding: 14px 74px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar ul {
    list-style: none;
    gap: 24px;
    display: flex;
}
.navbar ul il {
    position: absolute;

}
.navbar ul li a {
    text-decoration: none;
    font-size: 18px;
    color: white;
    transition: 0.3s ease;
}
.navbar ul li a:hover {
    color: #10a37f;
    text-decoration: underline;
    transition: 0.6s ease;
}
.navbar ul li a:hover::before {
    width: 100%;
}

/* Boby */
body {
    background-color: black;
}
body p {
    color: white;
    font-size: 20px;
    text-align: center;
    line-height: 25px;
}
.content p {
    margin-left: 20%;
    margin-right: 20%;
}
a {
    color: white;
}

/* Grid Container for Content */
.container {
    max-width: 100%;
    margin: 40px auto;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    }
.container h3 {
    color: white;
    text-align: center;
    /* text-decoration: underline; */
    margin-bottom: 10px;
    }
.item {
    background: black;
    border-radius: 10px;
    font-size: 20px;
    padding: 20px;
    border: gray 1px solid;
    }
@media(max-width: 768px) {
    .container{
        grid-template-columns: 1fr;
        }
    }

/* Images */
img {
    width: 300px;
    border: 1px white solid;
    border-radius: 10px;
    }
.image {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    object-fit: cover;
    max-width: 100%;
    width: 100%;
    }
img:hover {
    cursor: pointer;
    border: 2px #10a37f solid;
    }

/* Social Icons Footer */
.socialIcons {
    display: flex;
    justify-content: center;
}

.socialIcons a {
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 5px;
    border-radius: 50%;
}

.socialIcons a i {
    font-size: 1.4em;
    color: black;
    opacity: 0.9;
}

.socialIcons a:hover {
    background-color: #1c1c1e;
    transition: 0.5s ease;
}

.socialIcons a:hover i {
    color: white;
    transition: 0.5s ease;
}

/* Footer */
footer {
    background-color: #1c1c1e;
    margin-top: 40px;
}

.footerConatiner {
    width: 100%;
    padding: 70px 30px 20px;
}

.footerLogos ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer Navigation */
.footerNav {
    margin: 16px 0;
    font-size: 12px;
}

.footerNav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.footerNav ul li a {
    color: white;
    margin: 12px;
    font-size: 1.2em;
    text-decoration: none;
    transition: 0.6s ease;
}

.footerNav ul li a:hover {
    text-decoration: underline;
    color: #0e8268;
}

/* Footer Buttom */
.footerBottom {
    background-color: #000;
    padding: 20px;
    text-align: center;
}

.footerBottom p{
    color: white;
    font-size: 12px;
}