

.btn {
    display: block; /* Change display to block to center the button */
    width: 200px; /* Set the width of the button */
    padding: 15px; /* Set padding for the button */
    margin: 20px auto; /* Center the button horizontally */
    text-align: center; /* Center the text horizontally */
    background-color: darkcyan;
    color: yellow;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; /* Remove underline from the link */
}

/* 
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    overflow: hidden;
} */

.project {
    margin-bottom: 30px;
}

.project h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.images {
    display: flex;
    flex-wrap: wrap;
}

.images a {
    margin-right: 10px;
    margin-bottom: 10px;
    display: block;
}

.images img {
    width: 335px;
    height: auto;
}
