@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    background: var(--color-accent);
  }

  .menu-list {
    flex-direction: column;
    background: var(--color-bg);
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100vh;
    padding: 2rem 1rem;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
  }

  .menu-list.open {
    right: 0;
  }
}


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

.grid{padding:10px;}
.griditem{
  min-height:300px;
  background-color: var(--color-skeleton);
}

.light-green{
  background-color: var(--color-light-green);
}
.light-blue{
  background-color: var(--color-light-blue);
}
.light-yellow{
  background-color: var(--color-light-yellow);
}

.logo {
  height: auto;
  max-height: 40px;
  max-width: 100%;
}
.griditem{background-size: cover;}

.startsection{
  background-position: center center;
  background-size: cover;
  height:100dvh;
}

.middle{
  min-height:80vh;
  display:flex;
  flex-direction:column;
  justify-content: center;;
}

.middle img{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius:12px;
}


.mailbutton {
  align-items: center;
  background-color: #fff;
  border: 2px solid #000;
  box-sizing: border-box;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  fill: #000;
  font-family: Inter,sans-serif;
  font-size: 16px;
  font-weight: 600;
  height: 48px;
  justify-content: center;
  letter-spacing: -.8px;
  line-height: 24px;
  min-width: 140px;
  outline: 0;
  padding: 0 17px;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.mailbutton:focus {
  color: #171e29;
}

.mailbutton:hover {
  border-color: #06f;
  color: #06f;
  fill: #06f;
}

.mailbutton:active {
  border-color: #06f;
  color: #06f;
  fill: #06f;
}

@media (min-width: 768px) {
  .mailbutton {
    min-width: 170px;
  }
}