header {
  height: 12.5dvh;
  display: flex;
  justify-content: space-between;
  padding: 0rem 0.5rem;
  align-items: center;
  z-index: 90;
}
.logo {
  height: 70%;
  width: 165px;
}

/* Lunks */

.Links {
  display: none;
  ul {
    display: flex;
  margin-right: 5rem;
    
  }
  ul li {
    margin-right: 5rem;
    margin-top: 1rem;
  }
  button {
    /* margin-top: 0; */
    margin: 1rem;
  }
}

/* ************Menue****** */
#menu {
  height: 70%;
  width: 50px;
  img {
    height: 80%;
    width: 80%;
  }
}
#menu:hover {
  cursor: pointer;
}

/* ********* */
#MenuContent {
  background-color: var(--txtColor1);
  height: 100%;
  width: 70%;
  position: absolute;
  top: 0;
  left: 30%;
  animation-name: menuAnimation;
  animation-duration: 0.2s;
  animation-timing-function: linear;
  padding: 2rem;
  z-index: 100;
  display: none;
  border-radius: 60px 0 0 60px;
  position: fixed;
}
#menuBg {
  width: 100%;
  height: 200%;
  position: absolute;
  top: 0;
  background-color: var(--txtColor1);
  opacity: 55%;
  display: none;
  z-index: 99;
}

#MenuContent {
  h2 {
    margin: 2rem;
    cursor: pointer;
    color: var(--txtColor2);
    font-size: 20px;
  }
  h2:hover {
    color: #07eeacfb;
    font-size: 25px;
  }
}
#MenuContent .logo {
  height: 8dvh;
  margin-top: 5rem;
}
#MenuContent #close {
  height: 6dvh;
  width: 35px;
  cursor: pointer;
 
}
@keyframes menuAnimation {
  from {
    transform: translateX(200px);
  }
  to {
    transform: translateX(100px);
  }
}

/* end menue */
/* *************** *Media */

@media (width> 1200px) {
  #menu {
    display: none;
  }

  .Links {
    display: flex;
  }
}
