/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: url('imgs/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #f0f0f0;
    min-height: 100vh;
    position: relative;
    text-align: center; /* Text zentrieren */
}

/* Overlay layer for blur and transparency effect */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 10, 30, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1;
}

/* Container styling */
.container {
    position: absolute;
    top: 50%;
    left: 50%;
	z-index: 2;
    transform: translate(-50%, -50%); /* Zentriert den Container */
    background: rgba(50, 20, 70, 0.9);
    padding: 20px;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Optional: Schatteneffekt */
    overflow: auto;
}

/* Header styling */
.header {
    margin-bottom: 20px;
}

.header img {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 4px solid #9b59b6;
}

.header h2 {
    font-size: 24px;
    color: #ab47bc;
}

/* Button styling */
.links .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Make buttons wider */
    max-width: 300px; /* Increase max width for larger screens */
    margin: 10px auto;
    padding: 15px;
    font-size: 16px;
    background-color: #6a1b9a;
    color: #f0f0f0;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    border: 1px solid #ab47bc;
}

.links .button:hover {
    background-color: #8e24aa;
}

/* Icon styling */
.links .button-icon {
    width: 20px;
    height: auto;
    margin-right: 8px;
}

/* Footer styling */
footer {
    position: relative;
    text-align: center;
    z-index: 2;
}

footer a {
    color: #ab47bc;
    text-decoration: none;
    font-size: 16px;
}

footer a:hover {
    text-decoration: underline;
}

/* Category title styling */
.category-title {
    font-size: 16px;
    color: #ab47bc;
    margin: 12px 0 10px;
}

/* Category subtitle styling */
.category-subtitle {
    font-size: 14px;
    color: #ab47bc;
    margin: 5px 0 10px;
}

/* Separator styling */
.separator {
    width: 80%;
    margin: 0 auto 20px;
    border: none;
    border-top: 2px solid #ab47bc;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        max-width: 90%; /* Adjust width for smaller screens */
    }

    .header img {
        width: 100px;
    }

    .header h2 {
        font-size: 20px;
    }

    .links .button {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    footer {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header h2 {
        font-size: 18px;
    }

    .links .button {
        margin: 8px auto;
    }

    footer {
        font-size: 12px;
    }
}
