/* General Styles */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: blue;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
}
.cta-button:hover {
    background-color: darkblue;
}

/* Artist Cards */
.artist {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px;
    display: inline-block;
    width: 30%;
}
.premium {
    background-color: gold;
    font-weight: bold;
    padding: 5px;
}

/* Uncensored Art Section */
.uncensored-art {
    text-align: center;
    margin: 40px 0;
}
.uncensored-art h2 {
    font-size: 24px;
    color: #333;
}
.uncensored-art p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

/* Forms */
form {
    display: inline-block;
    text-align: left;
    width: 100%;
    max-width: 500px;
}
input, textarea, select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
}

/* Standardbildanzeige für Web (Desktop) */
.artist img {
    display: block;
    width: 100%;
    max-width: 600px; /* Maximale Breite für Desktop */
    height: auto;
    margin: 0 auto; /* Zentriert das Bild */
}

/* Anpassung für mobile Geräte */
@media (max-width: 600px) {
    .artist img {
        display: block;
        width: 80%;           /* Relative Breite für mobile Geräte */
        max-width: 250px;     /* Maximale Breite für mobile Geräte */
        height: auto;
        margin: 0 auto;
        padding: 0 10px;
    }
}
