charset utf-8
    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: 'Open Sans';
      background-color: rgb(171, 221, 255);
      padding-top: 70px;
      text-align: justify;
    }
    nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(41, 95, 139, 0.95);
    padding: 10px;
}

    nav ul {
        display: flex;
        justify-content: center;
        list-style: none;
        gap: 40px;
    }

    nav a {
        color: white;
        text-decoration: none;
        transition: 0.3s;
    }

    nav a:hover {
        color: #7fbf7f;
    }

    header {
      background-color: rgb(77, 139, 168);
      background-image: url(Slike/badminton_bg2.png);
      color: black;
      text-align: center;
      padding: 40px 20px;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      background-attachment: fixed;
      height: 100px;
    
    }

    header h1{
      font-family: 'Playfair Display';
      font-size: 48px;
      margin-bottom: 10px;
      color: black;
    }    
    main {
      max-width: 1200px;
      margin: auto;
      background-color: white;
    }
    section {
      padding: 40px;
      background-color: white;
      scroll-margin-top: 90px;
    }
    .oprema,.galerija{
      background-color: whitesmoke;
    }
    .sport{
      background-color: whitesmoke;
      height:500px;
    }

    .oprema img {
  width: 30%;
  border-radius: 10px;
  margin: 10px;
  transition: 0.3s;
}

    .oprema img:hover {
      transform: scale(1.05);
    }

    .sportaši {
      background: #e8f3ec;
      
    }

    .sportaši h3 {
    margin-top: 40px;
      color: #1f2c3d;
    }

    h2 {
      font-family: 'Playfair Display';
      font-size: 30px;
      color: rgb(44, 44, 44);
      margin-bottom: 20px;
    }

    h3 {
      font-family: 'Playfair Display';
      font-size: 25px;
      color: rgb(44, 44, 44);
      margin-bottom: 20px;
    }

    p {
      margin-bottom: 15px;
      color: black;
    }

    ul {
      margin-top: 20px;
      padding-left: 20px;
    }

    li {
      margin-bottom: 8px;
    }

    footer {
      background-color: rgba(41, 95, 139, 0.95);
      color: white;
      text-align: center;
      padding: 25px;
    }
    footer p{
      color: white;
    }


      .backtop{
      text-align: center;
      height: 40px;
      width: auto;
    }
    .galerija{
  text-align: center;
}
.galerija img {
  display: inline-block;
  margin: 10px;
  width: auto;
  height: 450px;
  object-fit: cover;
  border: 2px solid rgb(34, 101, 139);
  transition: .5s ease;
}
.galerija img:hover{
  opacity: 0.7;
  transform: scale(1.05);
  border-color: #4CAF50;
}
img{
  height: 450px;
  width: auto;
}

