/* Resetting some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic body styling */
body {
    font-family: Arial, sans-serif;
    height: 100vh;
    background-color: black;
    overflow: hidden;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center; /* Zentrierung des gesamten Inhalts */
}

/* Title styling */
h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Social Links Styling - größere Logos für Discord und GitHub */
#socialLinks {
    display: flex;
    justify-content: center; /* Mittig ausrichten */
    margin-bottom: 30px;
}

.socialIcon {
    width: 80px; /* Größere Größe für Discord und GitHub */
    height: 80px;
    margin: 0 20px; /* Etwas mehr Abstand */
    transition: transform 0.2s;
}

.socialIcon:hover {
    transform: scale(1.2);
}

/* Empfehlungen Styling - bleibt unten rechts */
#recommendations {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center; /* Logos horizontal mittig */
}

#recommendations h2 {
    font-size: 1.5rem;
    margin-right: 10px; /* Abstand zwischen Überschrift und Logos */
}

.recommendationIcon {
    width: 50px; /* Einheitliche Größe für Empfehlungen */
    height: 50px;
    margin: 0 15px; /* Abstand zwischen den Logos */
    transition: transform 0.2s;
}

.recommendationIcon:hover {
    transform: scale(1.2);
}

/* Dynamic Stars */
#stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: yellow;
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkle 1.5s infinite alternate;
}

@keyframes twinkle {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.2;
    }
}
