body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1E1E1E; /* Dunkelgrau */
    color: #F5E9DA; /* Cremeweiß */
    text-align: center;
}

header {
    background-color: #C05C22; /* Orange-Braun */
    padding: 50px 20px;
}

header h1 {
    margin: 0;
    font-size: 64px;
    letter-spacing: 2px;
    color: #F5E9DA;
}

.content {
    margin: 60px auto;
    max-width: 50%;
}

.content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.buttons a {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    background-color: #891B2F; /* Tiefrot */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
}

.buttons a:hover {
    background-color: #A354D6; /* Violett Hover */
    transform: scale(1.05);
}

/* Optionaler Look für deaktivierte Links */
.disabled-link {
    pointer-events: none;
    opacity: 0.4;
    cursor: default;
    background-color: #444 !important;
}

/* Grid-Container für alle Embeds */
.sketchfab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Einzelner Embed-Wrapper */
.sketchfab-embed-wrapper {
    background-color: #2c2c2c;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

/* Optional: iframe styling */
.sketchfab-embed-wrapper iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

/* Optional: Style für das untere Textfeld */
.sketchfab-embed-wrapper p {
    font-size: 13px;
    color: #ccc;
    margin-top: 8px;
}

/* Rainbow text */
@keyframes rainbow-text {
    0% { color: red; }
    16% { color: orange; }
    32% { color: yellow; }
    48% { color: lime; }
    64% { color: cyan; }
    80% { color: violet; }
    100% { color: red; }
}

.rainbow {
    animation: rainbow-text 2s infinite linear;
    font-weight: bold;
}