h1 {
  text-shadow: 2px 2px 5px rgb(1, 1, 1);
}

h2 {
  margin: 5px 0;
  color: rgb(186, 179, 164);
  font-size: 1em;
}

#section h2 {
  color: black;
  font-size: 1.3em;
}

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

#header {
    width: 100%;
    margin: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: rgb(134, 129, 129);
    color: rgb(186, 179, 164);
    text-align: center;
}

#nav {
    width: 100%;
    margin: auto;
    padding-top: 2px;
    padding-bottom: 2px;
    text-align: center;
}

.content {
    display: flex;
    align-items: center;
}

#section {
    display: block;
    text-align: left;
    width: 56%;
    margin: 2%;
    align-self: flex-start;
}

#aside {
  display: block;
  text-align: center;
  width: 36%;
  margin: 2%;
}

#footer {
    width: 100%;
    margin: auto;
    padding-top: 1px;
    padding-bottom: 1px;
    background-color:rgb(134, 129, 129);
    color: rgb(236, 230, 184);
    text-align: center;
}

#menu {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #e5e8bb;
}

.menuPunkt a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    background-color: rgb(189, 185, 154);
    border-bottom: 2px solid #e5e99e;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.menuPunkt a:hover {
    background-color: #111;
    border-bottom: 2px solid #e5e99e;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

img {
    border: 6px solid rgb(189, 185, 154);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

p {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.boxes {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.box {
    width: 30%;
    padding: 20px;
    border: 2px solid #e5e99e;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    background-color: #f9f9f9;
}

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

    .content {
        flex-direction: column;
    }

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

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

    .boxes {
        flex-direction: column;
    }

    .box {
        width: 100%;
        margin-bottom: 10px;
    }
