/* Navigation Bar */
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background-color: lightblue;
    border-bottom: 1px solid #ddd;
}

#logo {
    margin: 0;
}

#nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

#nav-links a {
    text-decoration: none;
    color: #333;
}

/* Home page */

*{
    background-color: lightblue;

}


.content{
    border: 20px darkgreen solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
   
}

img {
    width: 500px;
}

p{
    font-size: 20px;

}



/*Captains Page*/

#captains{
    display:none;
}
button{
    font-size: 50px;
    background-color: darkgreen;
    display: flex;


}
button:hover{
    color: green;
}


/*Coaches Page*/

.profile-container{
    display: flex;
    gap: 330px;
}

.profile{
    display: flex;
    flex-direction: column;
}

.profile-photo{
    height: 300px;
    width: 300px;
}






