* {
    box-sizing: border-box;
    box-sizing: border-box;
  }

  a {
    color:white;
    text-decoration: none;
  }

  a:hover {
    background-color: #ddd;
    color: black;
  }

  /* Stil body */
  body {
    font-family: Arial;
    margin: 0;
    color: white;
    padding:5%;
    background-color: #1f1f1f;
  }
  
  /* Header/logo tittel */
  .header {
    padding: 10%;
    text-align:start;
    background-image:url(bjornwide2.jpg);
    background-position: center; 
    color: #f6f4e6;
    display:flex;
  }

  .header a:hover{
      color:white;
  }

  .header h1 {
    font-size:2.25em;
    display:flex;
    text-shadow: 0 0 3px #181818;
  }
  
  .header h5 {
      position:absolute;
      right:9em;
      top:18em;
      text-align: center;
      display:flex;
  }
  .header img {
    position:absolute;
    display:flex;
    
    right:6em;
    top:6em;
    max-height: 10em;
}
.header img:hover {
    transform: scale(1.07);
    cursor:pointer;
}
  
  /* Navigering */
  .navbar {
    display: flex;
    background-color: #333;
    flex-direction: row;
  }
  
  /* navbar linker */
  .navbar a {
    color: white;
    padding: 24px 20px;
    text-decoration: none;
    margin: 0 auto;
    display: table;
    table-layout: fixed;
  
  }
  
  
  /* Change color on hover */
  .navbar a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /*  Column container */
  
  .row {  
    display: row;
    flex-wrap: wrap;
  }
  
  /* Main column */

  .main {
    display:flex;
    background-color: #181818;
    padding: 0px;
    flex-direction: row;
    justify-content: space-between;
  }

  /* Create two unequal columns that sits next to each other */
  /* Sidebar/left column */

  .side {
    background-color: #181818;
    padding: 20px;
    float:left;
    max-width: 50%;
  }
  .side2 nav {
    position:fixed;
    top:0;
  }
  .side2 {
    background-color: #181818;
    padding: 20px;
    max-width: 50%;
    float:right;
    max-height: 45em;
    overflow:hidden;
    overflow-y:scroll;
  }

  .gigBoks {
    background-color: #1f1f1f;
    
    width: auto;
    padding: 4%;
    display:flex;
    
    flex-direction:row;
  }

  .gigBoks2 {
    background-color: #2f2f2f;
    
    width: auto;
    padding: 4%;
    display:flex;
    
    flex-direction:row;
  }

  .dato{
    flex-direction: column;
    text-align: start;
    width: auto;
  }
  
  .gigBeskrivelse{
    width: 100%;
    text-align: center;
    align-self: center;
    padding-left: 5px
  }

  .gigBilett{
    text-align:right;
    align-self: center;
    padding:10px;
    background-color:#333;
    color:#ddd;
  }

  .gigBilett:hover{
    background-color:#ddd;
    color:black;
  }

  .gigIntro{
    padding:5px;
    text-align: center;
  }
  
  /* Fake image, just for this example */
  
  .webdesign {
    color:grey;
    text-align: end;
  }

  /* Footer */
  .footer {
    padding: 20px;
    text-align: center;
    background: #333333;
    flex-direction: row;
  }

  /* Footer linker */
  .footerlink {
    color: white;
    padding: 24px 20px;
    text-decoration: none;
    margin: 0 auto;
    display: table;
    table-layout: fixed;
  }

  .footerlink:hover {
    background-color: #ddd;
    color: black;
  }

  .button {
    background-color: #1f1f1f;
    color:white;
    border-color: #1f1f1f;
    border-radius:8px;
    margin:4px
  }
  
  /* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 700px) {
    .row, .main  {   
      flex-direction: column;
    }

    .navbar a { 
    float:center;
    flex-direction:column;
    width: 50;
    font-size:60% ;
    padding: 10px 10px
    }

    .side, .side2 {
      max-width: 100%;
    }
  }
  @media screen and (max-width: 1000px) {
    .header  img,h5{
        font-size: 0 
    }
 }
