* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: radial-gradient(circle at top left, #1d1d1d, #111111);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Header Styling */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.logo-image {
    height: 40px;
    width: auto;
    margin-right: 10px;
    padding-left: 10px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #b44cff;
    display: flex;
    justify-content: left;
}

#logotext {
    padding-top: 5px;
}

.container {
    text-align: center;
    position: relative;
    z-index: 10;
}

h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-in-out;
}

h1 span {
    color: #08ceff;
    font-weight: bold;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeIn 2s ease-in-out;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.buttons a {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    background: #1abc9c; /* Turquoise */
    color: white;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0px 10px 30px rgba(26, 188, 156, 0.7); /* Turquoise glow */
}

/* Hover-Effekt */
.buttons a:hover {
    transform: scale(1.1); /* Skalierung beim Hover */
    background: #16a085; /* Slightly darker turquoise */
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hintergrundanimation - viele schwebende Punkte */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-shapes div {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #00c3ff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(3, 172, 250, 0.7);
    animation: float 8s infinite ease-in-out;
    opacity: 0.6;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-100px) translateX(50px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Zufällige Startpositionen und mehr Punkte */
.floating-shapes div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-duration: 7s;
}

.floating-shapes div:nth-child(2) {
    top: 20%;
    left: 70%;
    animation-duration: 9s;
}

.floating-shapes div:nth-child(3) {
    top: 50%;
    left: 30%;
    animation-duration: 10s;
}

.floating-shapes div:nth-child(4) {
    top: 80%;
    left: 50%;
    animation-duration: 6s;
}

.floating-shapes div:nth-child(5) {
    top: 60%;
    left: 80%;
    animation-duration: 8s;
}

.floating-shapes div:nth-child(6) {
    top: 40%;
    left: 20%;
    animation-duration: 11s;
}

.floating-shapes div:nth-child(7) {
    top: 30%;
    left: 90%;
    animation-duration: 12s;
}

.floating-shapes div:nth-child(8) {
    top: 70%;
    left: 40%;
    animation-duration: 7s;
}

.floating-shapes div:nth-child(9) {
    top: 90%;
    left: 60%;
    animation-duration: 10s;
}

.floating-shapes div:nth-child(10) {
    top: 80%;
    left: 90%;
    animation-duration: 9s;
}

