@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body{
    background-color: #DBD7C8;
}

.links a {
    font-family:'Poppins', sans-serif;
    position: relative;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 400;
    font-size: 1.5rem;
    transition: transform 0.3s, background-color 0.3s;
}

nav {
    margin: -1rem;
    margin-top: 1rem;
    background-color: #DBD7C8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.AV{
    transition: transform 0.3s
}

.AV:hover {
    transform: scale(1.2);
}

ul {
    list-style: none;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.links a::after{
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    right: 0;
    background-color: #222;
    transition: all 0.3s ease;
}

.links a:hover::after {
    width: 100%;
}

.btn {
    margin-left: 4rem;
    height: 3rem;
    width: 8rem;
    font-size: 1rem;
    border-radius: 25px;
    background-color: black;
    color: white;
    border: 0px;
    transition: transform 0.3s, background-color 0.3s;
}
.btn:hover {
    transform: scale(1.1);
    background-color: #555;
    color: rgb(255, 255, 255);
    font-weight: 100;
    cursor: pointer;
}

.CI {
    height: 60px;
    width: 200px;
    margin-left: -3rem;
}

.Players-header{
    height: 200px;
    background-image: url(Images/Team.png);
    margin-top: 1rem;
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Players-header-Text{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    color: white;
    font-size: 4rem;
    text-shadow: 
    -3px -3px 0 #000,  
     3px -3px 0 #000,
    -3px  3px 0 #000,
     3px  3px 0 #000;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.player-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: center;
    width: 200px;
    padding: 10px;
}

.player-image {
    width: 100%;
    height: auto;
}


.player-name {
    font-family:'Poppins', sans-serif;
    background-color: black;
    color: white;
    padding: 10px 0;
    font-size: 1em;
    margin-top: 2rem;
    border-radius: 10px;
}

.player-button {
    font-family:'Poppins', sans-serif;
    background-color: #333;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1em;
    margin-top: 2rem;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.player-button:hover {
    font-family:'Poppins', sans-serif;
    background-color: #fcfcfc;
    color: #000;
    font-size: 1em;
}

