#menuToggle {
  display: block;
  /* You can also use relative/absolute here if you want to stay on the top */
  position: fixed;
  top: 20px;
  right: 20px;

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;
}

.hamburger {
  background-color: #062247;
  border-radius: 10px;
  padding: 10px;
  padding-top: 15px;
}

#menuToggle a {
  text-decoration: none;
  color: #232323;

  transition: color 0.3s ease;
}

#menuToggle a:hover {
  color: tomato;
}

#menuToggle input {
  display: block;
  width: 55px;
  height: 55px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle .hamburger span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #ffffff;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle .hamburger span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle .hamburger span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ .hamburger span {
  opacity: 1;
  transform: rotate(45deg) translate(-21px, -20px);
  background: #ffffff;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ .hamburger span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ .hamburger span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
  position: absolute;
  width: 100vw;
  height: 100vh;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #062247;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(100%, 0);

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu li {
  padding: 10px 0;
}

#menu li a {
  color: white !important;
}

#menu li label {
  cursor: pointer;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul {
  transform: translate(-20vw, 0);
}

.accordionlink {
  color: black;
}

.accordioncontent {
  display: none;
  -moz-animation-delay: 3.5s;
  -webkit-animation-delay: 3.5s;
  -o-animation-delay: 3.5s;
  animation-delay: 3.5s;
}

@media screen and (max-width: 1152px) {
  .intro header {
    display: none;
  }

  #menuToggle input:checked ~ ul {
    transform: translate(-30vw, 0);
  }
}

.content a,
.content h3 {
  color: black;
}

.robert {
  width: 60% !important;
}

.center {
  margin: 0 auto;
}

.dd {
  font-weight: bold;
  width: 120px;
  display: inline-block;
}

.ddd {
  font-weight: bold;
  width: 17%;
  display: block;
}

.dgsf {
  width: 100%;
}

.dgsf img {
  width: 60%;
  margin: 0 auto;
  display: block;
}

dl {
  display: grid;
  grid-template-columns: max-content auto;
}

dt {
  grid-column-start: 1;
  margin: 0 !important;
}

dd {
  grid-column-start: 2;
}
