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

html, body   {
  height: 100%;
	font-family: 'Montserrat', sans-serif;
  background-color:#ded9dc;
}
		
.banner	{
	position: relative;
	background-color: white;
	width: 100%;
	height: auto;
		}
		
.logo	{
	position: relative;
	display: block;
	border: 3px solid #f349a1;
	margin-left: auto;
	margin-right: auto;
	width: 30%;
	height: auto;
  border-radius: 20px;
}


/* Navbar */
nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  border: 3px solid #f349a1;
  background-color: #9b2e66;
  font-family: 'Montserrat', sans-serif;
}

.logo2 {
  color:#ded9dc;
  text-transform: lowercase;
  letter-spacing: 1px;
  font-size: 20px;
}

.nav-links {
  display: flex;
  width: 60%;
  justify-content: space-around;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color:#a5a1a3;
  text-decoration: none;
  letter-spacing: 0px;
  font-size: 14px;
  font-weight: bold;
}

.nav-links .current {
  color:#f7f4f5
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 2.5px;
  background-color:#a5a1a3;
  margin: 5px;
  transition: all 0.3s ease;
}

  .landing {
  height: 10vh;
  display: flex;
  justify-content: left;
  align-items: start;
}

.landing h1 {
  margin: 10px;
  font-size: 20px;
  color: red;
}  

@media screen and (max-width: 1024px) {
  .nav-links{
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .nav-links {
    position: absolute;
    right: 0px;
    height: 92vh;
    top: 12vh;
    background-color: #9b2e66;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }

  .nav-links li {
    opacity: 0;
  }
  .hamburger {
    display: block;
  }
}
.nav-active {
  transform: translateX(0%);
}
@keyframes navLinkFade {
  from {
      opacity: 0;
      transform: translateX(70px);
  }
  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);
}

.page-wrapper {
  min-height: 100%;
}


/* Lightbox */		
.gallery	{
	margin: 5%;
}

.gallery img   {
	width: 230px;
	padding: 3px;
	transition: 0.5s;
	border: 3px solid black;
}

.gallery img:hover	{
	transform: scale(1.3);
}


/* footer */
.footer	{
	background-color: #9b2e66;
  color:#a5a1a3;
	height: 320px;
  position: relative;
}

.footer .footer-content {
  border: 2px solid #918f90;
  height: 270px;
  display: flex;
  text-decoration: none;
}

.footer .footer-section li {
  list-style: none;
  text-decoration: none;
}
.footer .footer-content .footer-section {
  flex: 1;
  padding:25px;
}



.footer .footer-bottom {
  background-color: #8b2c5d;
  color:#a5a1a3;
  height: 50px;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding-top:20px;

}