bizmatch-project/bizmatch-static/style.css

53 lines
1.1 KiB
CSS

body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #e6f7ff; /* Hintergrundfarbe leicht blau */
color: #05386b; /* Dunkelblau für Text */
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background-image: url(./index-bg.webp);
background-size: cover;
background-position: center;
height: 100vh;
}
.container {
max-width: 600px;
padding: 40px;
background-color: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
border-radius: 10px;
border-left: 5px solid #379683; /* Grüne Akzentlinie links */
}
h1 {
color: #379683; /* Grünton für Überschriften */
}
p {
line-height: 1.6;
margin: 20px 0;
}
a {
color: #5cdb95; /* Helles Grün für Links */
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.container {
padding: 20px;
}
}