body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0f1735;
    color: white;
}

.container {
    text-align: center;
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 3em; /* Mache den Titel größer */
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); /* Innerer Schatten für den Titel */
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
}

.hammer-animation {
    font-size: 2em;
    animation: hammerMove 1s ease-in-out infinite;
}

@keyframes hammerMove {
    0%, 100% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

.contact-info {
    margin-top: 80px;
    font-size: 0.6em;
}

.contact-info a {
    color: #aad3df; /* Helle Blautöne für Links */
    text-decoration: none; /* Entfernt die Unterstreichung */
}

.contact-info a:hover {
    text-decoration: underline; /* Unterstreichung beim Hovern */
}