body{
    font-family:Verdana;
}
div#main{
    width: 100%;
    display:flex;
    flex-direction: column;
    gap: 30px
}

div#main h2{
    width:100%;
    background: #eeeeee;
    padding:10px;
    color: black;
}

div#main p{
    max-width:1000px;
    margin-left: 20px;
    margin-bottom: -20px;
}

.tag{
    display: flex;
    flex-direction:  row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    padding-left:20px;
}

.fuehrung{
    width: 200px;
    height: 200px;
    background: #eeeeee;
    border: solid black 1px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}


a:link, a:visited{
    text-decoration: none;
    color: black
}



.nr{
    margin-right: 50px;
    font-size: 230%;
    color:white;
    text-shadow: 0 0 4px black;
    text-align: right;
}

.amount{
    margin-left:-50px;
    font-size: 80%;
}

div#headline{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-size: 250%;
    border-bottom: solid 15px #862927;
    background-color: #862927;
    color:white;
}

div#listPlaetze{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1000px;
}


div#listPlaetze p{
    border-bottom: 1px solid black;
    padding: 20px;
}

 form{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    padding-left:20px;
    margin-top:20px;
     flex-wrap:wrap;
}

 form input[type=text], form input[type=email], form input[type=submit], button{
    height: 50px;
    min-width: 300px;
    border-radius: 5px;
    border: solid 1px black;
     font-size: 150%;
}


.keinPlatz{
    width:100%;
    height:60px;
    border-radius: 5px;
    background: #484848;
    display:none;
}

.kind{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

div#footer{
    margin-top: 20px;
    height: 30px;
    width: 100%;
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #862927;
    gap: 30px;
}

div#footer a:link, div#footer a:visited{
    color: white;
}