body {
    background-image: url("../img/CIMG1234.JPG");
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    backdrop-filter: blur(10px);
}
table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}
.a-link:link, .a-link:visited {
  color: blue;
  text-decoration: underline;
}

.a-link:link:active, .a-link:visited:active {
  color: greenyellow;
}
.logo-gallery {
    display: flex;
    flex-wrap: wrap;      
    gap: 20px;            
    padding: 20px;
    justify-content: center;
    /* Nutzt den Blur-Effekt deines Bodys aus der css.css */
    background-color: rgba(255, 255, 255, 0.1); 
    border-radius: 15px;
    margin-top: 20px;
}

.logo-card {
    background-color: cadetblue; 
    color: white;
    border-radius: 12px;
    padding: 20px;
    /* Flex-Basis 300px sorgt für das automatische Anpassen */
    flex: 1 1 300px;      
    max-width: 450px;     
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-5px);
}

.logo-card-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    margin: 15px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
}

.logo-card-images img {
    max-height: 110px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.logo-source {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: auto; 
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.project-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

