@charset "utf-8";

/* Basinställningar */
body {
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
  font-family: "Verdana", "Arial", "Helvetica", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

/* Länkar */
a {
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

a:hover,
a:focus {
  text-decoration: underline;
  outline: none;
}

/* Rubriker */
h1, h2, h3 {
  font-family: "Verdana", "Geneva", sans-serif;
  margin: 1.5em 0 0.5em;
  color: #222;
}

h1 {
  font-size: 2rem;
  margin-top: 1em;
font-weight: normal;
}

h2 {
  font-size: 1.5rem;
font-weight: normal;
}

h3 {
  font-size: 1.2rem;
  font-weight: normal;
}

/* Container */
#container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1em;
  text-align: left;
}


/* Topp-header med svagt blå bakgrund e6f0fa*/
header {
  background-color: #f5f5f5;
  padding: 20px 0;
   border-bottom: 1px solid #ccc;
}


header h1 {
  margin: 0;
  font-size: 28px;
  color: #003366;
font-weight: bold;
}

/* Responsivitet */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    background-position: center top;
    background-size: cover;
  }

  #container {
    padding: 1em;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }
}
/* Grundläggande layout */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  text-align: left;
}


.nav-links {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: normal;
}

.nav-links li a:hover {
  text-decoration: underline;
}

/* Huvudinnehåll */
main h2, main h3 {
  margin-top: 30px;
}

main p, main ul {
  line-height: 1.6;
}

/* Sidfot */
footer {
  background-color: #f0f0f0;
  padding: 30px 0;
  margin-top: 40px;
  border-top: 1px solid #ccc;
  text-align: center;
  font-size: 14px;
  color: #555;
}

.footer-content a {
  color: #333;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

/* Navigationsmeny */
.nav-menu {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-menu li {
  display: inline;
}

.nav-menu a {
  text-decoration: none;
  color: #003366;
  font-weight: bold;
  padding: 6px 10px;
  transition: background-color 0.3s ease;
}

.nav-menu a:hover {
  background-color: #d0e6f7;
  border-radius: 4px;
}

.logo {
  width: 250px; /* eller en annan passande bredd */
  height: auto; /* behåller proportionerna */
  margin-left: 1px; /* ger lite luft till vänster */
  margin-top: 5px; /* valfritt, lite luft ovanför också */
}


 ul.punktlista li {
  margin-bottom: 1.5em;
}

ul.punktlista a {
  font-weight: bold;
}
