/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    font-family: Arial, sans-serif;
    background: url("img/background.jpg") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.content {
    background: rgba(0, 0, 0, 0.4); /* leichter Hintergrund für bessere Lesbarkeit */
    width: 75%;
	height: 75%;
	padding: 20px 30px;
    border-radius: 10px;
}

h1 {
    font-size: 1.75em;
    margin-bottom: 0.5em;
}

p {
    font-size: 1.0em;
    margin-bottom: 0.5em;
}

a {
    color: #fff;
    text-decoration: underline;
}

a:hover {
    color: #ddd;
}
