body {
    margin: 0;
    font-family: sans-serif;
    color: white;
    text-align: center;
    overflow: hidden;
}

.title {
    font-size: 5em; /* Titelgröße erhöht */
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Schatten für den Titel */
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.project-link {
    display: inline-block; /* Macht das Element zu einem Block, aber behält Inline-Verhalten bei */
    margin: 20px;
    padding: 20px 40px; /* Grössere Buttons */
    border: 3px solid red;
    border-radius: 10px;
    background-color: #333; /* Dunkelgrauer Hintergrund */
    color: white;
    font-size: 1.5em; /* Grössere Schrift */
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.project-link:hover {
    background-color: red;
    color: black;
}