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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #ffffff;
    color: #111;
    line-height: 1.6;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    border-bottom: 1px solid #eee;
}

.logo {
    width: 150px;
    margin-bottom: 15px;
}

.tagline {
    color: #555;
    margin-top: 10px;
}

.intro {
    max-width: 700px;
    margin: 40px auto;
    text-align: center;
    color: #333;
    padding: 0 20px;
}

.projects {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.projects h2 {
    margin-bottom: 20px;
    text-align: center;
}

.project {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: 0.2s;
}

.project:hover {
    border-color: #ccc;
}

.project-info {
    flex: 1 1 300px;
}

.project-info h3 {
    margin-bottom: 10px;
}

.project-info p {
    color: #555;
    margin-bottom: 15px;
}

.buttons {
    margin-top: 10px;
}

.btn {
    display: inline-block;
    background: #111;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    margin-right: 10px;
}

.btn:hover {
    background: #333;
}

.project-pics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1 1 300px;
    justify-content: center;
    margin-top: 10px;
}

.project-pics img {
    max-width: 25%;
    height: auto;       /* maintain aspect ratio */
    border-radius: 6px;
    border: 1px solid #eee;
}
footer {
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    color: #777;
    font-size: 14px;
}
