* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: SpaceGrotesk;
    src: url("/fonts/SpaceGrotesk-Regular.ttf") format('truetype'),
}

@font-face {
    font-family: Bluu;
    src: url("/fonts/BluuNext-Bold.otf") format('opentype'),
}

h2 {
    font-size: 24px;
    font-family: SpaceGrotesk;
    margin-top: 10px;
    margin-left: -50px;
    font-weight: 500;
}

body {
    font-family: SpaceGrotesk;
    color: #0D0D0D;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #ffffff;
    flex-direction: column; /* Wichtig, um den Inhalt untereinander anzuordnen */
}

a {
    text-decoration: none;
    color: #000;
}

a, a:visited, a:active, a:hover {
    color: inherit;
    text-decoration: none;
}

.menu {
    width: 100%;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; /* Damit das Menü über anderen Inhalten liegt */
}

.menu svg {
    position: absolute;
    padding-top: 3px;
    margin-left: 6px;
    height: 30px;
    width: auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    padding: 10px;
    margin-top: 30px; /* Vergrößert den Abstand zwischen Menü und Galerie */
}

.gallery div {
    background-color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}
