* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    color: #666;
}

main {
    max-width: 900px;
    margin: 0 auto;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

section {
    margin-bottom: 40px;
}

.project {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.project-content {
    flex: 1;
    min-width: 250px;
}

.project-image {
    margin-left: 20px;
    max-width: 300px;
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.project-image img:hover {
    transform: scale(1.05);
}

ul {
    list-style-type: square;
    margin-left: 20px;
    margin-top: 5px;
}

ul li {
    margin-bottom: 5px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #666;
}

@media (max-width: 768px) {
    .project {
        flex-direction: column;
    }

    .project-image {
        margin-left: 0;
        margin-top: 20px;
    }
}
