@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    overflow-y: auto;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 700px;
    margin: auto;
    z-index: 1;
}

h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 2em;
    color: #56000b;
    animation: fadeIn 2s ease-out forwards;
}

h2 {
    font-family: 'Raleway', sans-serif;
    color: #FFFFFF;
    font-size: 1.2em;
    margin-top: 0;
    animation: fadeIn 3s ease-out forwards;
}

p {
    font-size: 1.2em;
    margin: 40px 0; 
    line-height: 1.6;
    text-align: justify;
    color: #f1f1f1;
    animation: fadeIn 4s ease-out forwards; 
}

.spotify-button {
    background-color: #1DB954;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1.2em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 40px 0; 
    animation: fadeIn 5s ease-out forwards; 
}

.spotify-button:hover {
    background-color: #17a143;
}

.spotify-player {
    margin: 40px 0; 
    animation: fadeIn 6s ease-out forwards; 
}

/* Bild der Lippen */
.symbol img {
    width: 100px; 
    height: auto;
    animation: fadeIn 3.5s ease-out forwards; 
}

/* Hintergrundgradient mit den neuen Farben */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #423c2b, #7f7450); /* Aktualisierte Hintergrundfarben */
    z-index: -1;
    animation: gradientAnimation 4s ease infinite; /* Hintergrundanimation beschleunigt */
}

/* Ensure background covers entire page */
html, body {
    height: 100%;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body::before {
    background-size: 200% 200%;
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8em; /* Kleinere Größe für mobile Endgeräte */
    }

    h2 {
        font-size: 1.2em; /* Gleiche Größe wie Beschreibung */
    }

    p {
        font-size: 1em;
    }

    .spotify-button {
        font-size: 1em;
        padding: 10px 20px;
    }

    .symbol img {
        width: 70px; /* Anpassung für mobile Endgeräte */
    }
}
