
body{
    font-family: Arial, sans-serif;
    }

    html {
        background: radial-gradient(circle, #800080, #090909);
        background-repeat: no-repeat;
        background-size: cover;
        background-color: #090909;
      }

 * {
    box-sizing: border-box;
}
.SvartKonteiner {                 
    top: 0;
    left: 0;
    border: 2px solid #030000;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    background-color: black;
    position: fixed;
    z-index: 9999;
    }
    
.SvartKonteiner a{
    color: #ebebeb;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-size: 1.5vw;
    }
    
.SvartKonteiner a:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    }
    
#Logo{
    color: red;
    font-family:'Courier New', Courier, monospace;
    font-size: 2vw;
    }

    .Hamburger {
        display: none;       /* skjules på PC */
        font-size: 6vw;
        background: none;
        border: none;
        color: rgb(249, 247, 247);
        cursor: pointer; 
    }

    .NavMeny {
        display: flex;
        gap: 110px;
    }

    .DropdownMeny {
        display: none;                     /* skjult som start */
        flex-direction: column;
        background-color:grey;
        border-top: 2px solid #300000;
        width: 30vw;
        padding: 2vw 0;
        top: 100%;
        right: 5vw;
        position: absolute;
        align-items: center;
}

    .DropdownMeny a {
        color: rgb(245, 243, 243);
        padding: 12px 20px;
        text-decoration: none;
        font-weight: bold;
        font-size: 3vw; 
}

.DropdownMeny a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.kolonne2 img{
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 3;
    object-fit: cover;
    display: block;
    border-radius: 0;
  
}

.kolonne2{
  position: relative;
}

.rad2::after {
    content: "";
    display: table;
    clear: both;
}

.rad2{
    border: 2px solid rgb(15, 14, 14);
    width: 40%;
    margin: 15% 5%;
    border-radius: 0;
}

 .omTekstBox{
    position: absolute;
    text-align: center;
    background: rgb(128, 132, 145);
    width:45vw;
    padding:3vw;
    box-shadow:0 0 10px rgba(0, 0, 0, 0.1);
    border-radius:0.5%;
    top: 50%;
    left: 170%;
    transform: translate(-50%, -50%);
}

.kolonne3 img{
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 3;
    object-fit: cover;
    display: block;
    border-radius: 0;

}

.kolonne3{
  position: relative;
}

.rad3::after {
    content: "";
    display: table;
    clear: both;
}

.rad3{
    border: 2px solid rgb(15, 14, 14);
    width: 40%;
    margin-top: 15%;
    margin-left: 55%;
    border-radius: 0;
}

.rad3 .omTekstBox {
    left: auto;
    right: 170%;
    transform: translate(50%, -50%);
}

.kolonne4{
  position: relative;
}

.rad4::after {
    content: "";
    display: table;
    clear: both;
}

.rad4{
    border: 2px solid rgb(15, 14, 14);
    width: 40%;
    margin: 15% 5%;  
    border-radius: 0; 
}

.storOverskrift{
   font-size: 2 vw; 
   font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   margin: -40px auto;
   font-weight: bold;
}

.Overskrift{
   font-size: 2vw; 
   font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   margin: auto;
   font-weight: bold;
}

.Tekst{
    font-size: 1.5vw; 
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 15px auto;
}

ul{
font-size: x-large; 
text-align:start;
}



.footerSection{
    display: flex; 
    justify-content: center; 
 }
 footer h3{
     font-size: 2vw;
     color: rgb(248, 8, 8);
     display: flex; 
     margin: 0;
 }
 ul{
    padding: 10%;
    margin: 0%;
 }
 
 a {
    text-decoration: none;
    color: white;
 }
 p{
    margin: 0;
 }
 
  .FooterLi{
    font-size: 1.5vw;
     display: flex;
     margin-top: 5vh;
     justify-content: center;
     color: white;
     white-space: nowrap;
 }
 
 .footerSection .FooterLi a img.instagram{
     width: 3.5rem;
     display: block;
     object-fit: contain;  
 }
 
 
 .footerSection .FooterLi a img.facebook{
     width: 2rem;
     display: block;
     object-fit: contain; 
    margin-right: 0.5rem;
    margin-left: 0.4rem; 
 }
 
 
 
 .footerSection .FooterLi a{
     display: flex;          /* gjør at ting legger seg på rad */
     align-items: center;    /* sentrer vertikalt */
    
 }

    @media (max-width: 1000px) {

    body{
        background-attachment: fixed;
        margin-top: clamp(80px, 13vh, 120px);
        }
        /* Vis hamburger */
    .Hamburger {
        display: block;
    }

    /* Skjul vanlige menylenker i navbar */
    .NavMeny {
        display: none;
    }

    /* Når container har "open", vis dropdown-boksen */
    .SvartKonteiner.open .DropdownMeny {
        display: flex;
    }

    #Logo{
        font-size: 7vw;
    }

    .DropdownMeny{
        width: 30vw;
    }

    .DropdownMeny a{
        font-size: 3vw;
    }

    .rad2{
    border: 2px solid rgb(15, 14, 14);
    width: 90%;
    margin: 40vw auto 0;
    border-radius: 0;
  }

  .rad3{
    width: 90%;
    margin: 10% auto 0;
  }

  .rad3 .omTekstBox {
    right: auto;
    transform: none;
  }

  .rad4{
    width: 90%;
    margin: 10% auto 0;
  }

  .kolonne2 .kolonne3 .kolonne4{
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .kolonne2 img .kolonne3 img .kolonne4 img{
    border-radius: 0;
  }


  .omTekstBox{
    position: static;
    text-align: center;
    background: rgb(128, 132, 145);
    width: 100%;
    padding: 5vw;
    transform: none;
    box-sizing: border-box;
    border-radius: 0;
  }


.storOverskrift{
font-size: 4.5vw; 
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: auto;
font-weight: bold;
}

.Overskrift{
font-size: 4vw; 
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: auto;
font-weight: bold;
}

.Tekst{
font-size: 3vw; 
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 15px auto;
}

ul{
    font-size: medium ;
    }

.footerSection{
    display: flex; 
    justify-content: center; 
    margin-top: 40%;
    }
footer h3{
    font-size: 3.5vw;
    color: rgb(248, 8, 8);
    display: flex; 
    margin: 0;
    }
ul{
    padding: 4%;
    }
        
.Meny a{
    margin-top: 35%;
    padding: 3%;
    }
.Kontakt p {
    margin-top: 11%; 
    }
        
a {
    text-decoration: none;
    color: white;
    }
p{
    margin: 0;
    }
        
.FooterLi{
    font-size: 3vw;
    display: flex;
    margin-top: 5vh;
    justify-content: center;
    color: white;
    white-space: nowrap;
    }
        
.footerSection .FooterLi a img.instagram{
    width: 3.4rem;
    display: block;
    object-fit: contain;  
    }
        
        
.footerSection .FooterLi a img.facebook{
    width: 2rem;
    display: block;
    object-fit: contain; 
    margin-right: 0.5rem;
    margin-left: 0.4rem; 
    }
        
.footerSection .FooterLi a{
    display: flex;          /* gjør at ting legger seg på rad */
    align-items: center;    /* sentrer vertikalt */
    }
}

  


  
