body {
    font-family: Arial, sans-serif;
    background-color: #2b2b2b;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

header {
    background-color: #ffcc00;
    padding: 20px;
    width: 100%;
}

h1 {
    margin: 0;
    font-size: 2em;
}

p {
    font-size: 1.2em;
}

.event-container {
    margin-top: 30px;
    width: 80%;
    max-width: 1000px;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.skin-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.skin-card {
    background-color: #444;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.skin-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.select-button {
    background-color: #00a9e0;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.select-button:hover {
    background-color: #008db2;
}

footer {
    background-color: #333;
    color: white;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
} 
