/* Grundlegende Reset-Einstellungen */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Allgemeine Einstellungen */
body {
font-family: 'Arial', sans-serif;
background-color: #f7f7f7;
color: #333;
line-height: 1.6;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Header */
header {
text-align: center;
padding: 40px 0;
background-color: #3498db;
color: white;
border-radius: 8px;
}
header h1 {
font-size: 36px;
margin-bottom: 10px;
}
header p {
font-size: 18px;
margin-top: 10px;
}
/* Hauptangebot */
.offer {
text-align: center;
background-color: white;
padding: 40px;
margin-top: 20px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.offer .content h2 {
font-size: 28px;
margin-bottom: 15px;
color: #3498db;
}
.offer .content p {
font-size: 16px;
margin-bottom: 25px;
color: #555;
}
.offer form {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
}
.offer input {
padding: 15px;
font-size: 16px;
width: 300px;
border: 1px solid #ccc;
border-radius: 5px;
}
.offer button {
padding: 15px 30px;
font-size: 16px;
background-color: #3498db;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.offer button:hover {
background-color: #2980b9;
}
/* Footer */
footer {
text-align: center;
padding: 20px;
margin-top: 40px;
font-size: 14px;
color: #777;
}
Diese Webseite wurde kostenlos mit Homepage-Baukasten.de erstellt. Willst du auch eine eigene Webseite?
Gratis anmelden