You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
883 B
CSS

/* style.css */
/* Allgemeine Formatierung */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
/* Header */
header {
background-color: #333;
color: #fff;
padding: 10px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 10px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
/* Hero-Bereich */
.hero {
background-image: url("background.jpg");
background-size: cover;
color: #fff;
padding: 100px;
text-align: center;
}
.hero h1 {
font-size: 40px;
}
.hero p {
font-size: 20px;
}
/* Inhaltsbereich */
.content {
background-color: #f5f5f5;
padding: 50px;
}
.content h2 {
color: #333;
font-size: 30px;
}
.content p {
color: #666;
font-size: 18px;
}
/* Footer */
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}