* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-image: url(../bilder/bild3-telefon.png);
    height: 150vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Poppins', sans-serif;
  }
  
  a,button {
    cursor: pointer;
  }
  
  nav {
    position: absolute;
    top: 100px;
    right: 100px;
    width: 250px;
  }
  
  .navigation {
    position: fixed;
    right: -500px;
    width: 350px;
    height: 100%;
    background-color: white;
    transition: .5s;
    z-index: 10;
  }
  
  .navigation ul li {
    color: white;
    text-align: center;
    list-style-type: none;
    font-size: 1.5em;
    padding: 40px;
  }
  
  .navigation ul li a {
    font-family: 'Lato', sans-serif;
    color: #00010d;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding-bottom: 0.25rem;
    position: relative;
    transition: color 0.3s ease-out;
  }
  
  a:hover {
    lighting-color: #00010d;
  }
  
  a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    border-radius: 4px;
    background-color: #2db85d;
    transition: width 0.25s ease-out;
  }
  
  a:hover::before {
    width: 100%;
  }
  
  
  .hamburger, .bar {
    position: fixed;
  }
  
  .hamburger {
    display: block;
    top: 5%;
    left: 90%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    border: 0;
    background: 0 0;
  }
  
  .bar {
    top: 3px;
    background: #2db85d;
    width: 100%;
    height: 4px;
    transition: all .3s ease-in, color .3s ease-in;
  }
  
  .bar :hover {
    background: #2db85d;
  }
  
  #middle {
    top: 11px;
  }
  
  #bottom {
    top: 19px;
  }
  
  .navigation.active{
    right: 0;
  }
  
  .hamburger.open #top {
    transform: rotate(45deg) translate(6px, 5px);
  }
  
  .hamburger.open #middle {
    background-color: transparent;
  }
  
  .hamburger.open #bottom {
    transform: rotate(-45deg) translate(6px, -5px);
  }
  
  #rubrik {
    position: relative;
    width: 100%;
    top: 5vh;
  }
  
  #rubrik-text {
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }
  
  #rubrik-text h1 {
    font-size: 62px;
  }
  
  #rubrik-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
  }
  
  span {
    color: #2db85d;
  }
  
  .timeline {
    position: relative;
    padding: 10vh 10vw;
  }
  
  .timeline-item {
    padding: 1em 2em;
    position: relative;
  }
  
  /* timeline linje */
  .timeline::after {
    content: "";
    position: absolute;
    width: 4px;
    background-color: black;
    top: 6vh;
    bottom: 70px;
    margin-left: -2px;
  }
  
  /* timeline cirklar */
  .timeline-item::after {
    cursor: pointer;
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 4px solid black;
    top: 14px;
    border-radius: 50%;
    z-index: 1;
    left: -14px;
  }
  
  .timeline-item:hover:after {
    background-color: #46eb34;
    box-shadow: 0 0 12px 6px #46eb34;
  }
  
  .title {
    cursor: pointer;
    padding-bottom: 0.25em;
    font-size: large;
    font-weight: 600;
  }
  
  .flex-column {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    align-content: center;
    gap: 1em;
  }
  
  .invisible {
    display: none;
  }
  