body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f7f7f7;
    color: #333;
  }
  
  .hero-small {
    background-image: url('vag.jpeg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2em;
    width: 100%;
  }
  
  .overlay h1 {
    margin: 0;
    font-size: 2.5rem;
  }
  
  nav {
    margin-top: 1em;
  }
  
  nav a {
    color: white;
    margin: 0 1em;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  main {
    max-width: 800px;
    margin: 2em auto;
    padding: 1em;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  .uppbyggnad {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 1em;
    margin: 2em auto;
    max-width: 800px;
  }
  
  footer {
    background-color: #eee;
    padding: 1em;
    text-align: center;
    color: #666;
  }