html, body {
    font-family: "Open Sans", sans-serif;
    height: 100%;
    margin: 0;
}


body{
   background-image:  url('/images/HD_nebel.jpg');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   
   color: #222;
}

.overlay{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:white;
    text-shadow: 0 0 10px black;


}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}



/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*background: white;*/
  background-color: rgb(89, 89, 158);
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 18px;
  width: 5%;
}

/* Hamburger */
.hamburger {
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #222;
  border-radius: 2px;
  transition: 0.3s;
}

/* Menü */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 20%;
  height: 100vh;
  background-color: rgb(89, 89, 158);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.4s ease;
}

.menu.open {
  right: 0;
}

.menu ul {
  list-style: none;
  text-align: center;
}

.menu li {
  margin: 20px 0;
}

.menu a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.menu a:hover {
  opacity: 0.7;
}

/* Hero */
.hero {
  padding-top: 120px;
  text-align: center;
}





@media (min-width: 850px) {
   /* h1 {
        margin-top: 200px;
    }

    .wave {
        height: 300px;
    }*/

   .article {
        display: flex;
    }

  /*  .main-image {
     /*   width: 50%;
        margin-top: 150px; 
    }*/
}

@media (min-width: 1200px) {
    .wave-bottom {
        bottom: 0px;
    }

    /*body {
        padding-left: 180px;
        padding-right: 180px;
    }*/

   

   
}