/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Global styles */
body {
    color: #333;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    text-align: center; /* Center align text in the body */
}

header {
    background-color: #000;
    color: #33ffff;
    padding: 1rem 0;
    text-align: center; /* Center align text in the header */
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #33ffff;
    font-weight: bold;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center; /* Center align text within the main content */
}

/* Remove bullet points from the unordered list */
main ul {
    list-style: none;
}

/* Button styles */
.partner-button {
    display: inline-block;
    background-color: #33ffff;
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.partner-button:hover {
    background-color: #00ccff; /* Change the background color on hover */
}

/* Partnership section styles */
.partnership {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.partner {
    flex-basis: calc(50% - 20px);
    padding: 20px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.partner:hover {
    background-color: #e0e0e0; /* Change the background color on hover */
}

/* Footer styles */
footer {
    background-color: #000;
    color: #33ffff;
    padding: 1rem 0;
    text-align: center; /* Center align text within the footer */
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}
