a.white
{color: white;}

a
{color: black; text-decoration: none;  font-weight: bold;}

a.uah
{color: black; text-decoration: none;  font-weight: 1000;}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
}

.bildmitbildunterschrift {
    width: 200px;
    height: 200px;
    position: relative;
}

.bildmitbildunterschrift-breit {
    width: 1000px;
    height: 200px;
    position: left;
}

.bildmitbildunterschrift span {
    background-color: silver;
    background-color: hsla(0, 0%, 100%, 0.5);
    position: absolute;
    bottom: 0px;
    width: 100%;
    line-height: 2em;
    text-align: center;
    font-weight: bold;
    color: black;
}

.bildmitbildunterschrift-breit span {
    background-color: silver;
    background-color: hsla(0, 0%, 100%, 0.5);
    position: absolute;
    
    bottom: -253px;	
    width: 100%;
    line-height: 2em;
    text-align: left;
    font-weight: bold;
    color: black;
}


.bildmitbildunterschrift img {
    width: 200px;
    display: block;
}

.bildmitbildunterschrift-breit img {
    width: 680px;
    display: block;
}

.left-nav {
  width: 120px;
  background-color: white;
}

.left-nav ul {
  font-weight: bold;
  list-style-type: none;
  padding: 0;
}

.left-nav ul li {
  padding: 10px;
}

.left-nav ul li a {
  text-decoration: none;
  color: black;
}

.left-nav ul li a:hover {
  color: #666;
}

.content {
  flex: 1;
  padding: 20px;
}

.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 2px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

p
{font-size: 13px;
 width:  85%}

table {
    	border: solid black 0px;
    	border-spacing: 35px;
    }





.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.thumbnail {
    width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid #ccc;
    transition: transform 0.3s;
}

.thumbnail:hover {
    transform: scale(1.05);
}

a {
    text-decoration: none;
}