
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
  }
  .button {
    cursor: pointer;
    background-color:rgb(255, 255, 255);
    padding:0;
    border:none;
  }
  /* Navigation */
  .navbar {
    background-color: rgb(0, 0, 0);
    padding: 15px 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
  }
  .center {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .navbar a {
    text-decoration: none;
    color: #ffffff;
  }
  .logo img {
    height: 60px;
    width: auto;
    background-color: black;
  }
  .navbar a button {
    background-color: transparent;
    color: #ffffff;
    border: none;
    padding: 12px 14px;
    font-weight: 600;
    cursor: pointer;
  }
  .navbar a button:hover {
    opacity: 0.9;
    text-decoration: underline;
  }

  /* Search bar */
  .search-bar {
    position: relative;
    align-items: center;
    margin: 10px;
  }
  .search-wrapper {
    position: relative;
  }
  .search-wrapper input {
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    min-width: 180px;
  }
  .results {
    margin-top: 6px;
    border-radius: 5px;
    max-width: 300px;
    background: #333;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1100;
  }
  .result-item {
    padding: 8px;
    cursor: pointer;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
  }
  .result-item:hover {
    background: #ffffff;
    color: #000000;
  }

  /* Hamburger */
  .hamburger {
    display: none;
    font-size: 28px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
  }

  /* Mobile menu */
  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    padding: 14px 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .mobile-menu.open {
    display: block;
    animation: menuSlide 180ms ease;
  }
  @keyframes menuSlide {
    from { transform: translateY(-6px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .mobile-menu .center {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
  }
  .mobile-menu .center a button {
    width: 100%;
    text-align: left;
    padding: 12px;
    background: transparent;
    color: #fff;
    border-radius: 6px;
  }
  .mobile-menu .mobile-search .search-wrapper input {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #111;
    color: #fff;
  }
  .mobile-menu .mobile-search .results {
    position: relative;
    background: #222;
  }

  /* Header */
  .header {
    text-align: center;
    background-image: url('/bilder/moppe2.jpg');
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
    margin: 0;
  }


  /* Info bar */
  .info-bar {
    background-color: #111;
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
    margin: 0%;
  }

  /* Main */
  main .container{
    text-align: center;
    padding: 20px 40px;
    font-size: 1.2rem;
    margin: 30px;
    color: #ffffff;
    background-color: rgb(24, 24, 24);
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(16, 16, 16, 0.3);
  }
  main{
  margin:0;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  background-image:linear-gradient(130deg, #000000, #000000);
  }
  main h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  main h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
  }
  main ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
  }

  footer {
    text-align: center;
    padding: 1rem;
    background-color:black;
    color: #fff;
    position: relative;
    

  }

  /* Responsive */
  @media (max-width: 900px) {
    .center { display: none; }
    .search-bar { display: none; }
    .hamburger { display: block; }
  }