@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    margin: 0;
    padding: 0;
}
#main{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#club-logo{
    width: 10rem;
    align-items: center;
    padding: 0.75rem;
}

.anthem{
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: x-large;
    font-weight: 200;
}

#header{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 1.5rem;
    /* margin-top: 1.5rem; */
    background: linear-gradient( #162C6E 50%, rgba(0, 0, 0, 0) 50%);
}

#search{
    display: flex;
    justify-content:center;
    align-items: center;
    padding: 2rem;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 2.5rem;
}



#input-box{
    border-radius: 5px;
    border: 1px #182E7A solid;
    font-size: medium;
    height: 2rem;
    width: 15rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}


#ul-list{
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: none;
}


.li-list{
    border: 1px solid #ddd;
    margin-top: -1px; /* Prevent double borders */
    background-color: #f3f3f3;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    color: #182E7A;
    width: 15rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    height: 2rem;
    width: 15rem;
    
}

.li-list:hover{
    background-color: #eee;
}

















.center{
    width: 70%;
    margin: auto;
}

.front-img{
    height: auto;
    width: 15rem;
}

.player-name{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-align: center;
    color: #182E7A;
}

.player-div{
    margin-bottom: 6rem;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
    transition: transform .2s;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    flex-direction: column;
}

.player-div:hover{
    transform: scale(1.2);
    cursor: pointer;
}



#chart-div, #height-chart{
    width: 90%;
    margin: auto;
}

#myChart, #heightChart{
    width: 100%;
    max-width: 100%;
}

.playerChart{
    max-height: 20rem;
}


#height-heading{
    margin-top: 5rem;
}

.player-flag{
    width: 2rem;
    margin-left: auto;
    margin-right: auto;
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100vh; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
    
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
    border-radius: 10px;
  }
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: rgb(255, 0, 0);
    text-decoration: none;
    cursor: pointer;
  }

.modal-name{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-align: left;
    margin-bottom: 2.5rem;
}

.modal-position{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: medium;
    text-align: left;
   
}

/* #slogan-1{
    float: right;
    left: 25%;
    position: absolute;
}
#slogan-2{
    float: left;
    left: 75%;
    position: absolute;
} */


#slogan{
    display: flex;
    justify-content:center;  
    flex-direction: column;
    margin-bottom: 2.5rem ;
    
}

#slogan-1, #slogan-2{
    font-weight: 300;
    font-size: x-large;
    color: #182E7A;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}