body {
/* font-size clamp = responsive  min = 0.7em, , max = 1.55em  (1em = 16px) */
font-size: clamp(1.4em, 2.8vw, 1.54em);
font-family: 'Anton', sans-serif;  
/*height: 100vh;*/
margin: 0;
display: grid;
place-items: center;
text-align: center;
}

a {font-family: 'Anton', sans-serif;}
a:link { COLOR: #000000 ; text-decoration: none;}   
a:visited { COLOR: #000000; text-decoration: none;}  
A:active {  COLOR: #D00001 ; text-decoration: none;border-style: none;}
a:hover { COLOR: #D00001;text-decoration: none;}

.menuleiste {
  background-color: white;
position: -webkit-sticky;
position: sticky;
top: 0;
text-align: center;
line-height: 3em;
width: 100%;
}

.inhalt {
background-color: white;
text-align: center;
a:link { COLOR: #D00001 ; text-decoration: none;}   
a:visited { COLOR: #D00001; text-decoration: none;}  
}

.bandfoto {
border-style:none;
max-width:100%;
height:auto;
}

.texte {
font-family:Courier New;
/* font-size: 22px; */
font-size: clamp(0.8em, 1.3vw, 1.2em);
text-align: left; 
padding-left: 10%;
}

.dropdown {
  position: relative;
  display: inline-block;
  background:white;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

input, textarea {
	font-family: 'Anton', sans-serif;  
	font-size: clamp(0.8em, 1.3vw, 1.2em);
	outline: none;
	margin: 0 auto;
    position: relative;
    width: 100%;   
}

textarea {
	height: 120px;
	resize: none;
}

.form {
	padding: 20px 15px;
	max-width: 700px;
    position: relative;
	text-align: left;
    word-wrap: break-word;
}

.button {
	width: 180px;

}
.button:hover {

  background-color: red;
  
}


a span { display: none; }
a:hover span { display: block; }