  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

  /*Variabler*/
  :root {
    --morklilla: #3E0450;
    --morklilla2: #5A2D6A;
    --morklilla3: #764586;
    --lyslilla3: #CEA7DC;
    --orange: #FF8419;
    --beige: #FFFCF2;
    --font: "Roboto Condensed", sans-serif;
  }
    
  body {
    font-family: var(--font);
    background:  #3E0450;;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
  }    
  
  
  /*Swipe ikon*/
  #scroll img {
  position: fixed;      
  top: 20px;             
  right: 20px;           
  width: 80px;          
  height: auto;          
  z-index: 1000;         
  animation: pulsate 3s infinite ease-in-out;/*Bevægelse*/
  }
  /*Bevægelse*/
  @keyframes pulsate {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
  }

  /*Angst overskift*/
  .content-lag {
    position: relative;
    top: 100px;
    z-index: 10;
  }

  h1{
    font-size: 120px;
    color: var(--orange);
    text-align: center;
    margin-bottom: 400px;
  }

  /* Parallax lag */
  .parallax-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
  }
  
  .parallax-element {
    position: absolute;
    pointer-events: none;
    opacity: 1;
  }  

  /* Bubbles sektion */
  .bubble-section {
    z-index: 20;
    position: relative; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; /* Sørger for, at sektionen fylder mindst hele højden af browserens viewport (100% af skærmhøjden) */
    margin: -400px auto; /* Bubblerne komnmer tætter på hianden */
    width: 100%; /* Sørger for at sektionen fylder hele bredden af dets container*/ 
  }
  
  h2 {
    color: var(--morklilla);
    text-align: center;
    font-size: 60px;
  }

  .bubble-section p{
    color: var(--beige);
    text-align: center;
    margin-top: 20px;
    line-height: 50px;
  }


  .bubble-wrapper {
    background: var(--morklilla3);
    border-radius: 50%;
    padding: 80px;
    margin: 80px auto;
    max-width: 600px;
    aspect-ratio: 1 / 1; ; /* Betyder at bredden og højden på elementet skal være ens – altså et kvadratisk format (1:1 forhold) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
  }

  #bubble1{
    margin-left:40px;
  }

  #bubble2{
    margin-right:40px;
  }

  /*Den oversete krop sektion*/
  h3 {
    color: var(--orange);
    text-align: center;
    margin-top: 400px;
  }

  .tekstindhold {
    max-width: 700px;
    margin: 60px auto 0;
    padding: 0 20px;
    text-align: center;
  }
    
  .section-header {
    font-size: 80px;
    color: var(--orange);
    margin-bottom: 20px;
  }
    
  .body-tekst {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--beige);
  }
    
  /*FOOTER*/
   /*Trekant*/
  .triangle-up {
    width: 0;
    height: 0;
    border-left: 80px solid transparent; /*form til trekant*/
    border-right: 80px solid transparent; /*form til trekant*/
    border-bottom: 60px solid #CEA7DC;  /*form til trekant*/
    margin: 0 auto;
    margin-bottom: 10px;
    margin-top: 90px;
  }
  
  /*Tilbage til toppen tekst*/
  .scroll-top {
    text-align: center;
    margin-top: 40px;
    cursor: pointer;
    font-family: var(--font);
    color: var(--beige);
    margin-bottom: 150px;
  }

  /*Touch knap redigering*/
  #touch img {
    width: 60px;
    height: auto;
    z-index: 2;
    margin-left: 15px;
    bottom: 40px;
    position: absolute;
    animation: pulsate 3s infinite ease-in-out; /*Bevægelse*/
  }

    /*Bevægelse*/
  @keyframes pulsate {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
  }
 
  