*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background-image:url("background.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
min-height:100vh;
color:white;
margin:0;
padding-top:90px;
}

/* Menü */

header{
position: fixed;
top:0;
left:0;
width:100%;

display:flex;
justify-content:space-between;
align-items:center;

padding:20px 50px;

background:rgba(0, 170, 190, 0.9);

z-index:1000;
}

.logo{
font-size:28px;
font-weight:bold;
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-size:18px;
}

nav a:hover{
color:#ffd700;
}

/* Hauptbereich */

.hero{
display:flex;
justify-content:center;
align-items:center;
text-align:center;
height:80vh;
}

.hero-content{
background:rgba(0,0,0,0.6);
padding:20px;
border-radius:10px;
max-width:700px;
}

h1{
font-size:50px;
margin-bottom:10px;
}

h2{
font-size:30px;
margin-bottom:20px;
}

p{
font-size:20px;
margin-bottom:30px;
line-height:1.6;
}

.button{
display:inline-block;
padding:15px 30px;
background:#ffd700;
color:black;
text-decoration:none;
font-weight:bold;
border-radius:5px;
}

.button:hover{
background:#e6c200;
}

.logo img{
height:100px;
}