body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    text-align: center;
    padding: 20px;
}

.players {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.player {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    width: 200px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.player img {
    width: 100%;
    border-radius: 10px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 20px;
}

.position-header {
    margin-top: 40px;
    font-size: 24px;
    border-bottom: 2px solid #ccc;
    color: #0077cc;
}

.player {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    width: 200px;
}

.sponsors {
    margin-top: 50px;
    padding: 30px;
    background-color: #f5f5f5;
    text-align: center;
    border-top: 2px solid #ddd;
}

.sponsors h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.sponsor-logos img {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.sponsor-logos img:hover {
    transform: scale(1.05);
}

header {
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.main-logo img {
    max-width: 200px;
    height: auto;
}

.header-with-two-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    text-align: center;
}

.header-with-two-logos h1 {
    font-size: 32px;
    margin: 0;
    white-space: nowrap;
}

.header-logo {
    height: 60px;
    width: auto;
}

@media (max-width: 600px) {
    .header-with-two-logos {
        flex-direction: column;
    }

    .header-with-two-logos h1 {
        margin: 10px 0;
    }
}

