    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f9f9f9;
      color: #333;
    }

   
    header {
      width: 100%;
      text-align: center;
    }
    header img {
      width: 100%;
      max-height: 350px;
      object-fit: cover;
      display: block;
    }
    h1 {
      margin: 0;
      padding: 1rem;
      background: #881919;
      color: white;
    }

    .section {
      max-width: 1000px;
      margin: 2rem auto;
      padding: 1rem;
      background: white;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      border-radius: 10px;
    }
    .section h2 {
      color: #2c3e50;
    }

  
    .grid-container {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-template-rows: repeat(8, 150px);
      gap: 10px;
      padding: 20px;
      max-width: 1200px;
      margin: auto;
    }
    .grid-item {
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }

    footer {
      background: #881919;
      color: white;
      text-align: center;
      padding: 1rem;
      margin-top: 2rem;
    }
    
    #flexkont{
        display: flex;
        justify-content: center;
    }
    .kont{
        margin: 10px;
    }