@keyframes rotateLogo {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px #00aaff, 0 0 10px #00aaff, 0 0 20px #00aaff;
    }
    50% {
        text-shadow: 0 0 10px #00aaff, 0 0 20px #00aaff, 0 0 40px #00aaff;
    }
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #ffffff; /* Yazılar için daha belirgin beyaz renk */
    text-align: center;
    background: linear-gradient(135deg, #008000, #ffffff); /* Yeşil ve beyaz degrade */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://upload.wikimedia.org/wikipedia/commons/b/be/SV-Werder-Bremen-Logo.svg') no-repeat center center; /* SV Werder Bremen logosu */
    background-size: 50%;
    z-index: -1;
    animation: rotateBackground 30s linear infinite;
}

.container {
    background-color: rgba(0, 0, 0, 0.8); /* Daha koyu bir arka plan */
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    width: 400px;
    box-sizing: border-box;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    margin: 5px 0;
}

a {
    color: #ff4d4d; /* Daha parlak kırmızı renk */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 0.9rem;
    }
}
