* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} 
body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh; 
    max-width: 2200px;
    margin: auto;
}
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}
div > div {
    margin:  auto;
    display: flex;
    justify-content: space-between;
}
nav {
    display: flex;
    color: #fff;
    width: 100%;
    justify-content: space-between;
}

main{
    background-color: rgb(255, 255, 255);
}
main > div.omoss {
    background-color: #333;
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    max-width: 70ch;
    margin: auto;
    margin-top: 20px;
    padding: 10px;
}

main > article.produkter{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width: 70ch;
    padding: 20px;
}
main > article.produkter > section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.15);
    margin : 20px;
}
div.section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.15);
    margin : 20px;

}
div.section> section{
  margin: 20px;
}
div.startBild{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-direction: column;
}
div.startBild > img{
    max-width: 100%;
}

form > label{
  display: block;
}

div.contact-form {
    display: flex;
    flex-direction: column;
    /* margin: 20px; */ 
  }
  .contact-form {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer > p{
width: 100vw;
flex-grow: 4;

}
footer > a{
    background-color: white;
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: inline-block;
    align-self: center;
}



nav.topnav {
  background-color: #333;
  overflow: hidden;
  list-style-type: none;
}

/* Style the links inside the navigation bar */
nav.topnav > a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
nav.topnav > a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
nav.topnav > a.active {
  background-color: #04AA6D;
  color: white;
}

/* Hide the link that shod open and close the topnav on small screens */
nav.topnav > a.icon {
  display: none;
}

@media screen and (max-width: 600px) {
  nav.topnav > a:not(:first-child) {display: none;}
  nav.topnav > a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  nav.topnav.responsive {
    position: relative;
    flex-direction: column;
  }
  nav.topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  nav.topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}