body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    padding: 50px;
}
.bottom {
    color: #9E9E9E
}
h1 {
    color: #333;
}
h2 {
    margin-top: 40px;
    color: #4CAF50;
}
.about, .projects {
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.links {
    margin-top: 20px;
}
.link {
    display: inline-block;
    margin: 10px;
    padding: 15px 25px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.link:hover {
    background-color: #45a049;
}
.project {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}
.project img {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}
.project-description {
    text-align: left;
}
.project-links {
    margin-top: 10px;
}
.project-link {
    font-size: 20px;
    color: #4CAF50;
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s;
}
.project-link:hover {
    color: #45a049;
}

@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    .project {
        flex-direction: column;
        align-items: center;
    }
    .project img {
        max-width: 100%;
        height: auto;
        margin: 0 auto 15px auto;
    }
    .project-description {
        text-align: center;
    }
    .link {
        padding: 10px 20px;
        font-size: 16px;
    }
}

.about i {
    vertical-align: middle;
    margin-right: 8px;
}