/* General Reset */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header Styling */
header {
    background: #282c34;
    color: white;
    padding: 20px;
    text-align: center;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

/* Main Content Styling */
main {
    padding: 40px;
    min-height: 60vh;
    text-align: center;
}

button {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #61dafb;
    border: none;
    border-radius: 4px;
    font-weight: bold;
}

button:hover {
    background-color: #21a1f1;
}

/* Footer Styling */
footer {
    background: #eee;
    padding: 10px;
    text-align: center;
    font-size: 0.8rem;
}
