/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Developer List */
.developer-list {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.developer-list h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.developer {
    background-color: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.developer h3 {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.developer p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.developer a {
    color: #007bff;
    text-decoration: none;
}

.developer a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 1rem;
    position: fixed;
    width: 100%;
    bottom: 0;
}
