body{

    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: large;
}

button{

  display: block; /* Makes the button a block element */
  margin: 0 auto; /* Centers horizontally */
}

    img{

        align-self: center;
        display: block;
        margin: auto;
        height: 100%;
        width: 100%;


    }

.area{

    padding-bottom: 20px;
    padding-top: 20px;
    background-color: rgb(82, 82, 82);
}

.flex{
    width: 50%;
    margin: auto;
    display: flex;
}

.flex>*{
    flex: 1;
    justify-content: center;
    align-content: flex-start;
    padding: 20px;


}

.videocontainer {
  width: 100%;
  aspect-ratio: 16 / 9; /* responsive Höhe */
  display: block;
}

.gallery{


    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 20px;


}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
}