/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* Main container */
.container {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

/* Header styling */
header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

/* Project section */
.project {
    background-color: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.project p {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
}

/* Button styling */
.project-button {
    font-size: 18px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.project-button:hover {
    background-color: #45a049;
}

/* Responsive layout */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    header h1 {
        font-size: 30px;
    }

    .project h2 {
        font-size: 24px;
    }

    .project-button {
        font-size: 16px;
    }
}
