@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
header
{
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 200px;
    transition: 0.5s ease;
}
header .logo
{
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}
header .navigator
{
    position: relative;
}
header .navigator .nav-i a
{
    position: relative;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
}
header .navigator .nav-i a:before
{
    content: '';
    position: absolute;
    background: #fff;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}
header .navigator .nav-i a:hover:before
{
    width: 100%;

}
section
{
    padding: 100px 200px;

}
.hjem
{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #3f3f3f;
}

.hjem .kont
{
    z-index: 888;
    color: #fff;
    width: 70%;
    margin-top: 50px;


}
.hjem .kont h1
{
    font-size: 4em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 75px;
    margin-bottom: 600px;

}

.hjem .kont a
{
    background: #fff;
    padding: 15px;
    color: #000000;
    font-size: 1.1em;
    font-weight: 900;
    text-decoration: none;
    border-radius: 2px;
    

}



@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #050801;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}
a{
    position: relative;
    display: inline-block;
    padding: 25px 30px;
    margin: 40px 0;
    color: #03e9f4;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 4px;
    overflow: hidden;
    margin-right: 50px;
   
}
a:hover{
    background: #03e9f4;
    color: #050801;
    box-shadow: 0 0 5px #03e9f4,
                0 0 25px #03e9f4,
                0 0 50px #03e9f4,
                0 0 200px #03e9f4;
     -webkit-box-reflect:below 1px linear-gradient(transparent, #0005);
}
a:nth-child(1){
    filter: hue-rotate(270deg);
}
a:nth-child(2){
    filter: hue-rotate(110deg);
}
a span{
    position: absolute;
    display: block;
}
a span:nth-child(1){
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,transparent,#03e9f4);
    animation: animate1 1s linear infinite;
}

.striped-border { display: block;  overflow: hidden; border-style: inset; border-width: 1px; }



  .text-typing h1 {
    color: whitesmoke;
    margin:0px;
    white-space:nowrap;
    overflow:hidden;
    animation:typing 20s infinite steps(75,end) forwards, 
            blink 1s infinite;
    margin-top: -400px;
    
        
    
  } @keyframes typing {
    0% {width: 0%}
      50% {width: 100%}
    100% {width: 0% }
    
  } @keyframes blink {
    0%, 100%{
      border-right: 2px solid transparent;
    }
    50% {
      border-right: 2px solid rgb(255, 255, 255);
    }
  }

