* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    text-decoration: none;
    scroll-behavior: smooth;
    list-style: none;
  }

  body {
    background-color: #f5f5f5;
    color: #2c3e50;
  }

  .kompetencer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .blok {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 3rem;
    padding: 3rem;
    gap: 2rem;
    transition: 0.3s ease;
    flex-wrap: wrap;
  }

  .blok:hover {
    transform: scale(1.02);
  }

  .mørk {
    background: linear-gradient(to left, rgb(101, 184, 192), rgb(156, 131, 196));
    color: white;
    flex-direction: row;
  }

  .lys {
    background-color: #ffffff;
    color: #2c3e50;
    flex-direction: row-reverse;
    border: 2px solid rgb(101, 184, 192);
  }

  .tekst {
    flex: 1;
    text-align: left;
  }

  .ikon {
    font-size: 3rem;
    flex-shrink: 0;
  }

  .mørk .ikon, .lys .ikon {
    color: inherit;
  }

  h3 {
    margin-top: 0;
    font-size: 2rem;
  }

  p {
    margin: 0.5rem 0 0 0;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  @media(max-width: 768px) {
    .blok {
      flex-direction: column !important;
      text-align: center;
    }

    .tekst {
      text-align: center;
    }
  }