
#projects {
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

#container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
}

.project {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.project img {
    transition: transform 0.3s ease;
    height: 55vh;
    object-fit: contain;
    width: auto; /* Bild füllt die Breite des Containers aus */
}

.project img:hover {
    transform: scale(1.2); /* Vergrößert das Bild beim Hover */
}

.project a {
    margin-top: 5vh;
    color: white;
    text-decoration: none;
}

.project a:hover {
    color: #007BFF;
}