@import url('https://fonts.cdnfonts.com/css/madelon-script');
*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

nav{
  display: flex;
  position:fixed;
  width:100%;
  top:0px;
  z-index:10;
  justify-content: space-around;
  align-items: center;
  min-height: 75px;
  background-color: #ede9e0;
  font-family:sans-serif;
  border-bottom: 1px solid black;
}



.nav-links{
  display: flex;
  justify-content: space-around;
  width: 50%;
}

.nav-links li{
  list-style:none;
  
}
.nav-links a{
  color: black;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight:400;
  font-size:18px;
}



.burger{
  display:none;
  cursor: pointer;
}

.burger div{
  width:25px;
  height:3px;
  background-color:black;
  margin: 5px;
  transition: all 0.3s ease
  
}

button{
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
  color: black;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight:400;
  font-size:18px;
}

.dropbtn {
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  text-align: center;
  display: inline-block;
}

.dropdown-content{
  display: none;
  position: absolute;
  text-align: center;
  background-color: #ede9e0;
  min-width: 160px;
  z-index: 2;
  margin-top:27px;
  margin-left:-33px;
  border-left: 1px solid black;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  gap:40px;
}


.dropdown-content a {
  color: black;
  text-decoration: none;
  display: block;
  padding-block: 5px;
  border-radius:10px;
}


.dropdown-content a:hover {background-color: #ddd;}

.circle{
  margin-right:3px;
  margin-bottom:5px;
}

.lineDown {
  animation: 1s anim-lineDown ease-out;
}
@keyframes anim-lineDown {
  0% {
    opacity: 1;
    transform: translateX(400px);
  }
  20% {
    opacity: 1;
  }
  50% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
.show {display:block;}

@media screen and (max-width:1024px){
  .nav-links{
    width:60%;
  }
}

@media screen and (max-width:1150px){
  body{
    overflow-x: hidden;
  }
  
  .nav-links{
    position:fixed;
    z-index:4;
    right:0px;
    height:400px;
    top: 74px;
    background-color: #ede9e0;
    display:flex;
    flex-direction: column;  
    align-items: center;
    width:100%;
    transform: translatex(-100%);
    transition: transform 0.3s ease-in;
  }


  .last{
    margin-top:200px;
  }
  
  .dropdown-content{
    position:relative;
    margin-top:10px;
    margin-left:0;
    border: none;
  }
  .nav-links li{
    opacity: 0;
  }
  .burger{
    display:block;
  }
}

.nav-active{
  transform: translateX(0%);
}

@keyframes navLinkFade{
  from{
    opacity:0;
    transform: translateX(-100px);
  }
  to{
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1{
  transform: rotate(-45deg) translate(-5px,6px);
}

.toggle .line2{
  opacity:0%;
}

.toggle .line3{
  transform: rotate(45deg) translate(-5px,-6px);
}



