* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

 /*------------------------------TOPNAV------------------------------------------------------------*/
 .topnav>div {
    display: none;
  }
  
  .topnav.responsive>div {
    display: block;
  }
  
  .topnav a {
    display: none;
  }
  
  .topnav a.icon {
    float: right;
    display: block;
    padding: 20.5px;
  }
  
  .topnav.responsive {
    position: relative;
  }
  
  .topnav a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: center;
    padding:20.5px;
  }
  
  .topnav {
    background-color: #333;
    overflow: hidden;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    /* float: left; */
    display: block;
    color: #ffffff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Add an active class to highlight the current page */
  .topnav a.active {
    background-color: rgb(117, 117, 117);
    color: white;
  }
  
  /* When the screen is less than --//- pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
  @media screen and (min-width: 620px) {
  
    /* Add a black background color to the top navigation */
    .topnav.responsive>div {
      display: flex;
    }
  
    .topnav>div {
      display: flex;
    }
  
    /* Hide the link that should open and close the topnav on small screens */
    .topnav a.icon {
      width: 60px;
      height: 61px;
      padding: 20px;
      display: none;
      position: absolute;
      top: 0;
      right: 0;
    }
  }
  
  /* 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: 620px) {}
  
  /*------------------------------------------------------------------------------------------------------------*/
  
  
  nav>img {
    margin: auto;
    display: flex;
  }
  
  header>h1,
  header>h2 {
    background-color: rgb(255, 255, 255);
    min-width: 50px;
    color: black;
    text-align: center;
    padding: 0px 40px;
    margin: auto;
    font-family: 'Courier New', Courier, monospace;
  }
  
  body>nav>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  header>h2 {
    font-size: 15px;
    min-width: 50px;
  }
  
  
  main>article>h2 {
    text-align: center;
    padding: 10px;
    background-color: rgb(175, 173, 173);
    margin: 10px;
  }
  
  main>article>div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  main>article>div>section {
    display: flex;
    flex-direction: column;
    max-width: 650px;
    align-items: center;
  }
  
  main>article>div>section>img {
    width: 120px;
    padding: 10px 30px;
  }
  
  /*------------------------------------------------------------------------------------------------------------*/
  

/*-------------------------------------------------------------------------------------------*/
main{
  padding: 40px 0px 0px 0px;
}

main > article > table{
    border: black solid 5px;
    border-collapse: collapse;
    width: 100%;
    margin: auto;
    max-width: 700px;
    
}

main > article > table > thead > tr > td{
    text-align: center;
}
main > article > table > tbody >  tr > td{
    border: black solid 5px;
    text-align: center;
    padding: 20px 0px 0px 0px;
}

/*-----------------------------------------------------------------------------------------*/
  
  footer>section.omoss {
    background-color: rgb(255, 255, 255);
    color: black;
    padding: 120px 30px 30px 30px;
    margin: auto;
    font-family: 'Courier New', Courier, monospace;
  }
  
  footer>section.omoss>a {
    color: black;
    background-color: #ddd;
    text-decoration: none;
    font-size: 30px;
    border-radius: 5px;
    padding: 0px 15px;
  }
  
  footer>section.omoss>a:hover {
    background-color: #333;
    color: white;
    border-radius: 5px;
  }
  
  
  footer>section.kontakt {
    background-color: rgb(255, 255, 255);
    color: black;
    padding: 30px;
    margin: auto;
    font-family: 'Courier New', Courier, monospace;
  }
  
  footer>section.kontakt>a {
    font-size: 30px;
    color: black;
    border-radius: 5px;
    padding: 0px 15px;
    background-color: #ddd;
    text-decoration: none;
  }
  
  footer>section.kontakt>a:hover {
    background-color: #333;
    color: white;
    border-radius: 5px;
  }
  
  footer>section.motto {
    text-align: center;
    color: black;
    background-color: #ddd;
    text-decoration: none;
  
    padding: 0px 15px;
    font-size: 12px;
  }
  
  /*------------------------------------------------------------------*/
  
  /*Surfplatta*/
  
  @media screen and (min-width: 620px){
    body>nav>div {
  
      flex-direction: row;
    }
  
    main>article>div>section>img {
      width: 120px;
      padding: 10px 30px;
    }
  
    nav>img {
      margin: auto;
      display: flex;
      justify-content: center;
    }
  
    main>article>div {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: center;
    }
  
    main>article>div>section> {
      display: flex;
      flex-direction: row;
      max-width: 300px;
    }
  
  }
  
    /*Dator*/
    @media screen and (min-width:1024px) {
  
      
    }