*
{
    box-sizing: border-box;
}

     
@font-face 
{
  font-family: 'Lucida Sans';
  src: url('fonts/LHANDW.TTF');
}

    body 
    {
        font-family:Lucida Sans;
        font-size:20px;
        margin:0px;
        background-color:rgb(88, 15, 2) ;
        width: 100%;
        height: 100%;
    }


    #normalfont
    {
        font-family: georgia;
        margin:0px;
        padding:10px;
    }

    summary 
    {
        list-style:none;
        background-color: rgb(88, 15, 2);
        color:white;
        width:350px;
        border-radius: 25px 25px 25px 25px;
        padding:10px;
        text-align:center;
        cursor:pointer;
    }
    summary::before
    {
        color: white;
        font-weight:bold;
        transition: all 0.5s;
        padding-right: .25rem;
       
    }

    details[open] summary::before
    {
        padding-right: .25rem;
    }


    .header
    {
        display:flex;
        flex-wrap: row wrap;
        flex-direction:center;
        background-image: repeating-linear-gradient( rgb(0, 0, 0), rgb(88, 15, 2) );
        width:100%;
        height:150px;
        color: white;
        justify-content: center;
        text-align: center;

    }

    .navi
    {
        display:flex;
        flex-wrap: wrap;
        flex-direction: row;
        background-color: rgb(88, 15, 2);
        justify-content: center;
        align-items:center;

    }

    @media (max-width: 412px)
    {
         .row, .navi
        {
            flex-direction: column;
        }

        .bilder 
        {
            flex-direction:column;
        }
    }

    .navi > div
    {
        background-color: rgb(151, 47, 6);
        width:200px;
        height: 50px;
        margin: 15px;
        text-align: center;
        line-height: 50%;
        font-size: 16px;
        padding: 20px;
        border-radius: 25px 0px 25px 0px;
        border:solid 4px rgb(136, 25, 6);
        box-shadow: 2px 2px 10px black ;
        align-items:center;
    }

    .navi a
    {
        text-decoration: none;
        color:white;
    }

    .navi :hover
    {
        background-color: rgb(192, 62, 11);
    }
    .row
    {
        display:flex;
        flex-wrap: wrap;
    }

    .side1
    {
        flex:15%;
        background-color: rgb(88, 15, 2);
        border: 10px;
        border-color: rgb(179, 126, 28);
        padding: 20px;
        color:white;
    }

    .main
    {
        flex:70%;
        background-color: rgb(243, 207, 169);
        justify-content: center;
        padding: 20px;

    }

    .side2
    {
        flex:15%;
        background-color: rgb(88, 15, 2);
        border: 10px;
        border-color: rgb(179, 126, 28);
        padding: 20px;
        color:white;
    }

    .side2 a
    {
        text-decoration: none;
        color:white;
    }

    .bilderrahmen
    {
        background-color: grey;
        width:100%;
        padding:20px;
        height:100px;
        border-radius: 25px 25px 25px 25px;
        text-align: center;
        padding-top:15px;
    }

    .bilder
    {
        margin-top:50px;
        display:none;
        align-items: center;
        width:350px;
        margin:auto;

    }

    .flex
    {
        display:flex;
    }
    img 
    {
    
        border-radius: 15px 15px 15px 15px;
        transform: scale(0.8);

    }


    .prev
    {
        cursor:pointer;
        position:relative;
        top:-160px;
        left:-150px;
        padding:16px;
        color:white;
        font-weight: bold;
        font-size:20px;
        transition: 0.6s ease;
        border-radius: 15px 0px 0px 15px;
        user-select: none;
        text-decoration: none;
  
    }

    .next
    {
        cursor:pointer;
        position:relative;
        top:-160px;
        right:-150px;
        padding:16px;
        color:white;
        font-weight: bold;
        font-size:20px;
        transition: 0.6s ease;
        border-radius: 0px 15px 15px 0px;
        user-select:none;
        text-decoration: none;

    }

 

    .prev:hover, .next:hover
    {
        background-color: rgb(88, 15, 2);
    }


  

    h1, h2
    {
        text-align:center;
    }

    #spiel:hover
    {
        width:600px;
    }
    .textbox
    {
        background-color:rgb(136, 25, 6) ;
        width:100%;
        margin-top:-10px;
        padding:10px;
        height:16%;
        border-radius: 25px 25px 25px 25px;
        text-align: left;
        margin:5px;
    }

    .zentrieren
    {
        text-align:center;
        height:250px;

    }
    .footer
    {
        display:flex;
        flex-direction: center;
        background-color:black;
        color:white;
        justify-content: center;
        padding: 10px;
    }

    .footer a
    {
        text-decoration: none;
        color:white;
    }

  