body {
    text-align: center;
}
img {
    border: 2px solid black;
}

.tech-list {
    list-style-type: disc;
    text-align: left;
    display: inline-block;
    margin: 0.5rem 0;
}

.project__content h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.project__links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.project__image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
}

.project__image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.button{
    color: #4a7c59;
}

.button:visited {
    color: #1a2e20;
}