/*
    CSS file created by Lars Skjærbæk
*/

body {
    width: 90%;
    margin: auto;
}

#header {
    width: 100%;
    margin: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: rgb(207, 136, 136);
    color: white;
    text-align: center;
}

#nav {
    width: 100%;
    margin: auto;
    padding-top: 2px;
    padding-bottom: 2px;
    background-color: rgb(250, 250, 250);
    text-align: center;
}

#section {
    float: left;
    text-align: left;
    width: 56%;
    margin: 2%;
}

#aside {
  float: left;
  text-align: center;
  width: 36%;
  margin: 2%;
}

#footer {
    float: left;
    width: 100%;
    margin: auto;
    padding-top: 1px;
    padding-bottom: 1px;
    background-color: rgb(207, 136, 136);
    color: white;
    text-align: center;
}

#menu {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #f6dcaf;
}

.menuPunkt {
    float: left;
}

.menuPunkt a {
    display: block;
    color: rgb(243, 243, 243);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    background-color: rgb(239, 211, 181);
}

.menuPunkt a:hover {
    background-color: rgb(207, 136, 136)
}

  .kasse {
    width: 200px;
    height: 200px;
    background-color: rgb(239, 211, 181);
    color: rgb(244, 244, 244);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 18px;
    border-radius: 10px;
    transition: transform 0.5s;
    cursor: pointer;
  }

  .kasse:hover {
    transform: rotateY(180deg);
    background-color: rgb(239, 211, 181);
  }


/* mobil optimeret design */
@media screen and (max-width: 800px) {

    #section {
      width: 100%;
      margin: auto;
    }

    #aside {
      width: 100%;
      margin: auto;
    }

}
