body {
    display: flex;
    font-family:Verdana;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background: rgb(229,143,30);
    background: linear-gradient(90deg, rgba(229,143,30,1) 0%, rgba(255,102,16,1) 35%, rgba(229,143,30,1) 78%);
}
main {
   flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
img {
    width:100%;
    max-width: 600px;
    height: auto;
}
footer {
    background-color: #231F20;
    padding: 10px;
    text-align: center;
}
 a {
    color: white; /* Textfarbe weiß */
    text-decoration: none; /* Standardmäßig keine Unterstreichung */
}
a:hover {
	text-decoration: underline; /* Unterstreichung beim Mouseover */
}
.content {
	background-color:#fff;
	max-width:70%;
	margin:1em;
	padding:1em;
}
.content a {
	color:#000;
}
