body{
    
    background-color: #828282;
    font-family: geist-serifen;
    font-size: 20px;

    margin: auto;
    padding: 0 100px 0 100px;
    
    max-width: 1200px;
}

@font-face {
        font-family: geist;
        src: url('Geist-VariableFont_wght.ttf') format('truetype');
    }

@font-face {
        font-family: geist-serifen;
        src: url('GeistMono-VariableFont_wght.ttf') format('truetype');
    }


h1 { 

    font-family: geist;
    font-style: bold;
    font-size: 80px;
    color: #ffffff;
    text-align-last: center;
    
    outline: 1px 1px #000000;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    
    border: 2px solid black;  

   }
    
h3, h2 {
    font-family: geist;
    font-style: bold;
    font-size: 25px;
    color: #ffffff;
    
    outline: 1px 1px #000000;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    
    }
    
a { 
    cursor: pointer;
    
    font-family: geist-serifen;
    color: black;
    text-decoration: none;
    }


img{
    width: 100%;
    }

figure{
    margin:10px;
    
    border: 2px solid black;
    
    position: relative;
    display: flex;
    flex-wrap: wrap;
    
    flex-direction: row;
    justify-content: space-between;
    } 




figcaption {
    background-color: none;
    }

.links_startseite {
    position: absolute;
    left: 5px;
    top: -10px;
}

.next-page {
    position: absolute;
    right: 0;
    bottom: -25px;
    }

.last-page {
    position: absolute;
    left: 0;
    bottom: -25px;
    }

.Text-Dokument {
    margin-bottom: 50px;
}

.krok, .SW{
    aspect-ratio: 16/9;
    overflow: hidden;
    }
   

.flex-container {
    
    display: flex;
    flex-flow: wrap;
   
    gap: 0;
    padding: 0;
    }
    
    .SW, .Farbe, .krok{
     flex: 50%; 
    }


/* Small screens */

    @media all and (max-width: 803px) {
        .flex-container {
    /* On small screens, we are no longer using row direction but column */
            flex-flow: column;
            align-items: stretch;
            }
            .SW, .Farbe, .krok{
            width: auto;
            }
        }

button {
    
    font-family: geist-serifen;
    cursor: pointer;
    
    border: 2px solid black;
    
    border-radius: 20px;

    font-size: 18px;
    padding: 5px;
    width: auto;
} 

button span {
    position: relative;
    transition: 0.5s;
}
 
.button-go-right  span:after{
    content: '\00bb';
    position: absolute;
    opacity: 0;
    right: -20px;
    transition: 0.5s;
}

.button-go-right:hover  span {
  padding-right: 20px;
}

.button-go-right:hover  span:after {
  opacity: 1;
  right: 0;
}

.button-go-left  span:after{
    content: '\00ab';
    position: absolute;
    opacity: 0;
    left: -20px;
    transition: 0.5s;
}

.button-go-left:hover  span {
  padding-left: 20px;
}

.button-go-left:hover  span:after {
  opacity: 1;
  left: 0;
}


.beispiel-button:hover  span:after {
  opacity: 1;
  left: 0;
}

.beispiel-button:hover  span {
  padding-left: 20px;
}

.beispiel-button  span:after{
    content: '\00bb';
    position: absolute;
    opacity: 0;
    left: -20px;
    transition: 0.5s;
}


#container {
        aspect-ratio: 4/1;
        margin: auto;
        overflow-x: hidden;
        overflow-y: scroll;
        }


footer {
	padding-top: 10px;
	border-top: 1.5px solid black;
	margin-top: 50px;
    margin-bottom: 200px;
}

