body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.slide {
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(to right, #3a3a3a, #52090d);
    color: white;
    position: absolute;
}

.slide:target {
    display: flex;
}

/* Erste Slide anzeigen, wenn nichts gewählt */
#slide1 {
    display: flex;
}

h1,
h2 {
    margin: 10px;
}

.letter {
    font-size: 30px;
    font-weight: bold;
    color: rgb(165, 10, 10);
}

.nav {
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.nav a {
    padding: 10px 20px;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    text-decoration: none;
    margin: 10px;
    border-radius: 5px;
}

footer {
    position: absolute;
    bottom: 0;
    width: 20%;
    text-align: center;
    color: white;
    padding: 20px;
    font-size: 14px;
}