/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Header styles */
header {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #333;
}

header h1 {
    font-size: 36px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

header .logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 200px;
    height: auto;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    padding: 10px 20px;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: #333;
    color: #fff;
    border-radius: 5px;
}

/* About section */
main {
    padding: 40px 20px;
    background:  #f8f9fa; /* light  background  color*/
    color: #333; /* White text color */
    min-height: calc(100vh - 160px); /* Ensure the main content covers the screen height */
}

#about {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff; /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
}

#about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#about p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social media styles */
.social-media {
    margin-top: 20px;
}

.social-media a {
    color: #333; /* Dark grey text color */
    font-size: 24px; /* Large font size for icons */
    margin: 0 10px; /* Margin between icons */
    transition: color 0.3s; /* Smooth transition for hover effect */
}

.social-media a:hover {
    color: #2a9d8f; /* Greenish-blue color on hover */
}

/* Footer styles */
footer {
    background-color: #2a9d8f;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    border-top: 2px solid #333;
}

footer p {
    font-size: 16px;
}

/* Responsive styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 28px;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    header .logo {
        width: 75px;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 24px;
    }
    nav ul li a {
        font-size: 16px;
    }
    header .logo {
        width: 50px;
        top: 5px;
        right: 5px;
    }
    #about h2 {
        font-size: 28px;
    }
    #about p {
        font-size: 16px;
    }
}
