@charset "utf-8";
/* CSS Document */

body {
    margin: 0;
    font-family: 'Roboto', sans-serif; /* Verwende Roboto-Schriftart für den Rest der Seite */
}

.hero {
    background-image: url('img/background-image.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 600px;
}

.logo {
    max-width: 200px; /* Adjust the width of the logo as needed */
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Dancing Script', cursive; /* Verwende Dancing Script-Schriftart für den Titel */
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    color: white;
    text-decoration: none;
}

.social-links a:hover {
    color: lightgrey;
}
