/*navigatie balk*/
header
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color:#ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
header img
{
    height: 75px;
    width: auto;
}
nav ul
{
    list-style: none;
    display: flex;
    justify-content: center;
    height: 30px;
    gap: 50px;
    margin: 0;
    margin-right: 50px;
    padding: 0;
}
nav, a
{
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-family: Arial;
}
/*tekstboxen*/
.sport-container
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.sport-box
{
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    overflow: hidden;
}
/*afbeeldingen*/
.sport-box img
{
   width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.sport-box h2
{
    margin: 1rem;
    font-size: 1.4rem;
    color: #000000;
}
.sport-box p
{
    margin: 0 1rem 1.5rem;
    line-height: 1.5;
}
section
{
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: #333;
}
/*contact footer*/
.contact
{
  background-color: antiquewhite;
  border-top: 40px solid black;
  text-align: center;
  font-family: Arial, sans-serif;
}
.contact-footer
{
  background-color: antiquewhite;
  border-top: 5px solid #d4a373;
  text-align: center;
  font-family: Arial, sans-serif;
  padding: 40px 20px;
  margin-top: 40px;
}
.contact-footer p
{
  font-size: 1.1rem;
  color: #333;
}