* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navigatiebalk */

body {
  width: 100%;
  font-size: 18px;
}

nav {
  background: #f8c157;
  border-bottom: 16px solid #01363a;
  box-shadow: 0px 0px 0px 8px #6cc4c7; /* Schaduw voor dubbele rand */
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-left: 15%;
  position: absolute;
  width: 100%;
  z-index: 1;
}

nav section {
  padding-right: 10%;
  display: flex;
  align-items: center;
  width: 70%;
  justify-content: flex-end;
}

nav img {
  width: 150px;
  margin-bottom: -100px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

nav ul {
  margin-right: 5%;
}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 0 30px;
}
nav p a {
  text-decoration: none;
  font-size: 1.5rem;
  font-family: "proxima-soft", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  color: #333;
}

nav p a:hover {
  color: #909090;
}

nav .user p {
  font-size: 1.5rem;
  font-family: "proxima-soft", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  color: #5a5a5a;
}

.content-parent {
  padding-top: 16vh;
}

.content-parent h1 {
  padding-bottom: 50px;
}

/* .content-parent button{
    font-size: 1.5rem;
    text-decoration: none;
    color: #f7f7f7;
    background: #c3c3c3;
    border: 3px solid #f7f7f7;
    box-shadow: 0px 0px 0px 2px #c3c3c3; 
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.5));
    font-family: "proxima-soft", sans-serif;
    font-weight: 500;
    margin: auto 10px;
    padding: 5px 20px;
    border-radius: 25%;
    height: 75px;
} */

.ulBody > li {
  margin: 0 1rem;
  overflow: hidden;
}

.ulBody li a {
  text-decoration: none;
  font-size: 1.5rem;
  font-family: "proxima-soft", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  color: #333;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: black;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width:  767px) {

  nav{
    padding-left: 5%;
  }

  nav ul {
    margin-right: 0;
  }

  nav a img{
    width: 110px;
    height: 110px;
  }

  nav p a{
    font-size: 1.2rem;
  }

  nav section{
    padding-right: 0%;
  }

  .menu-button-container {
    display: flex;
    padding-right: 20%;
  }

  .ulBody {
    position: absolute;
    margin-top: 65px;
    top: 0;
    right: 0;
    flex-direction: column;
    width: 48%;
    justify-content: center;
    align-items: center;
  }

  #menu-toggle ~ .ulBody li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  #menu-toggle:checked ~ .ulBody li {
    border-bottom: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .ulBody > li {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: black;
    background-color: #6cc4c7;
  }

  .ulBody > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }

  .ulBody li a {
    text-decoration: none;
    color: white;
    font-family: "proxima-soft", sans-serif;
  }
}