/* General body styles */
body {
    font-family: 'Outfit', sans-serif;
    background-color: #fff;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header styles */
header {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    text-align: center;
    border-bottom: 2px solid #000;
}

header img {
    width: 150px;
}

/* Navigation styles */
nav {
    text-align: center;
}

nav ul {
    list-style: none; /* Ensures no bullet points */
    padding: 0;
    margin: 0;
    display: inline-block; /* Centers the nav items if the header has other elements */
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff; /* Ensuring text is black for visibility */
    text-decoration: none;
    font-size: 1.2em;
    padding: 5px 10px; /* Padding for better clickability */
}

nav ul li a:hover {
    color: #555; /* Slightly lighter on hover for a subtle effect */
    text-decoration: underline; /* Underline on hover for better user experience */
}

/* Main section styles */
main {
    padding: 20px;
    text-align: center;
}

section {
    margin-bottom: 20px;
}

/* Download button styling */
button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1em;
    margin-top: 20px;
}

button:hover {
    background-color: #333;
}

/* General link styling */
a {
    background-color: #000;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 1.2em;
    border-radius: 5px;
    display: inline-block;
}

a:hover {
    background-color: #4CBB17;
}

/* About section hyperlink styling */
#about a {
    background-color: transparent;
    color: #0000FF;  /* Classic hyperlink blue */
    padding: 0;
    font-size: 1em;
    display: inline; /* Ensures the link does not take the button style */
}

#about a:hover {
    text-decoration: underline;
}

/* Footer styles */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    margin-top: 20px;  /* Ensure there's space above the footer */
}

/* Responsive styles */
@media (max-width: 600px) {
    button, a {
        width: 100%;
    }

    nav ul li {
        display: block;
        margin-bottom: 10px;
    }
}
