 

  
  
  
  body {
      margin: 0;
      font-family: 'Open Sans', sans-serif;
      background-color: #ffffff;
      color: #1e1e1e;
	  
    }
    header {
      background-color: #002b5c;
      color: white;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between ;
      align-items: center;
    }
    nav a:link {
      color: white;
      margin-left: 1rem;
      text-decoration: none;
      font-weight: bold;
    }
	
	nav a:visited {
      color: white;
      margin-left: 1rem;
      text-decoration: none;
      font-weight: bold;
    }
    .hero {
      background: url('https://mikolla.kuvat.fi/kuvat/Koripallo/Peli-Karhut%20korisjuniorit/2025-2026/Peli-Karhut%20korisjuniorit%20joukkuekuvaukset%2024.9.2025/MM_L0063.jpg?img=img4k') center/cover no-repeat;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2.5rem;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
	  text-align:center;
    }
    .news-section {
      padding: 2rem;
      background-color: #f5f5f5;
    }
    .news-grid {
		
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
	  
    }
	
	  .news-grid a:link{
		color: Black;
     text-decoration: none;
	  
    }
	  .news-grid a:visited{
		color: Black;
     text-decoration: none;
	  
    }
    .news-card {
		
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	  text-align:center;
	  
    }
	
	

    .news-card img {
      width: 90%;
    /*  height: 300px;*/
      object-fit: cover;
    }
    .news-card .content {
      padding: 1rem;
	  
	     display: inline-block;
	
    }
	
	
	
	.team-card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
       overflow-x: auto;
      white-space: nowrap;
    }
    .team-card img {
     width: 100%;
      max-height: 400px;
     
      object-fit: cover;
   
	  
    }
    .team-card .content {
      padding: 1rem;
    }

	.team-card p {
     color: Black;
	 font-size:.6rem;
	
    }
	
	
	
	
    footer {
      background-color: #002b5c;
      color: white;
      text-align: center;
      padding: 1rem;
    }
	
	footer a:link {
	text-decoration: none;
	color:white;
}

	footer a:visited {
	text-decoration: none;
	color:white;
}

