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

html{
  font: normal 16px sans-serif;
  color: #555;
}

ul, nav{
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  opacity: 0.9;
}

a:hover{
  opacity: 1;
}

.container {
  position: relative;
  width:100%;
  height: 100vh;
  box-sizing: border-box;
  margin: 0;
  background-color: #ccc;
  color: #fff;
}

.bild {
  float: left;
  width: 75%;
  height: 100vh;
  background: url(../bilder/landing2.png) 0 0 no-repeat;
  background-size: cover;
  cursor: pointer;
}

.text {
  width: 25%;
  float : right;
  padding: 20px;
}

.text li {
  display: inline-block;
  margin: 1em;
}

.text header {

  margin-top: 10px;
  clear: right;
  text-align: center;
}

.text h1{
  font-family: "Roboto Slab", sans-serif;
  font-weight: 100; 
  font-size: 60px;
  margin-bottom: 15px;
}

.text h3{
  font-family: "Roboto Slab", sans-serif;
  font-weight: 100;
  font-size: 28px;
  margin-top: 100px;
  margin-bottom: 40px;
}

@media (max-width: 750px){
  .bild {
    float: none;
    width: 100%;
  }
  .text {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    color: #fff;
    background-color: transparent;
  }
  .text header {
    width: 100%;
  }

  .text h1 {
    font-size: 40px;
    font-weight: 100;
    text-shadow: 1px 1px rgba(0,0,0,0.5);
  }

  .text h3 {
    font-size: 18px;
    font-weight: 100;
    text-shadow: 1px 1px rgba(0,0,0,0.5); 
  }
}
