@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');

/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background: #f4f4f9;
    color: #333;
}

/* Header */
header {
    text-align: center;
    padding: 50px;
    background: #4a90e2;
    color: white;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header button {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    background: white;
    color: #4a90e2;
    border-radius: 5px;
    cursor: pointer;
}

/* Sections */
section {
    padding: 40px;
    max-width: 900px;
    margin: auto;
}

h2 {
    color: #4a90e2;
    margin-bottom: 10px;
}

/* Projects */
.project {
    background: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
}

form input,
form textarea {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
}