body, * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body {
    padding-top: 90px;
}
nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    color: white;
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

nav .container {
    width: 80%;
    background-color: black;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}





nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
}
nav .logo{
    font-size: 30px;
     font-weight: bold;
}

nav ul a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}


section#home{
    display: flex;
    justify-content: center;
    padding-top: 80px;
    font-size: 40px;
    width: 100%;
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(https://static.vecteezy.com/system/resources/thumbnails/045/658/844/small/athlete-sport-design-illustration-art-vector.jpg);
}

section#types{
    width: 100%;
    padding: 20px 0;
    background-image: url(https://4kwallpapers.com/images/wallpapers/workout-limitless-endurance-gym-colorful-smoke-1920x1080-929.jpg);
}

section#types h1{
    margin-bottom: 30px;
}

section#types .cards {
    margin-top: 15px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: wrap;
    
}

section#types .cards .card{
    width: 300px;
    height: 350px;
    padding: 20px;
    background: #22C1C3;
    background: linear-gradient(0deg, rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
section#types .cards .card:hover{
    transform: scale(1.1);
}

section#types h1{
    text-align: center;
    font-weight: bold;
    font-size: 30px;

}
section#types .cards .card p{
    text-align: center;
    font-size: 30px;
}

section#sportmen .cards .card img{ 
    width: 250px;
    height: 300px;
}
section#sportmen .cards .card{
    padding: 0 20px;
}
section#sportmen .cards{
    display: flex;
    text-align: center;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    background: #aebfee;
    background: radial-gradient(circle, rgba(174, 191, 238, 1) 0%, rgba(233, 148, 148, 1) 72%);
}
section#sportmen .playerNames{
    text-align: center;
    background: #aebfee;
    background: radial-gradient(circle, rgba(174, 191, 238, 1) 0%, rgba(233, 148, 148, 1) 72%);
}
section#sportmen button{
    background-color: red;
    color: white;
    border-radius: 15px;
    font-size: 15px;
    padding: 5px;
}
