body {
	display: flex;
	flex-direction: column;
	width: 85%;
    margin: auto;
	gap: 80px;
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(255 255 255);
}

h1 {
	font-size: 35px;
    font-weight: bold;
	color: rgb(0 0 0);
	margin-bottom: 60px;
}

h2 {
	font-size: 26px;
    font-weight: bold;
	color: rgb(0 0 0);
	margin-bottom: 40px;
	margin-top: 40px;
}

p {
    font-size: 20px;
    color: rgb(0 0 0);
	margin-bottom: 30px;
}

.navbar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.logo p {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
}

.menu a {
  margin-left: 30px;
  text-decoration: none;
  font-weight: 500;
  color: rgb(0 0 0);
}

.menu a:hover {
  color: #165259e0;
}

.members {
  background-color: #165259e0;
  color: rgb(255 255 255) !important;
  padding: 10px 20px;
  border-radius: 9999px;
  transition: background 0.3s;
  text-transform:uppercase;
  font-weight: 600 !important;
}

.signin {
    display: none;
}

.menu-mobile-only {
	display: none;
}

.welcome-footer {
    display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	width: 80%;
	margin: auto;
	text-align: center;
	margin-bottom: 10px;
}

.welcome-footer p {
    font-size: 16px;
	margin-bottom: 5px;
}

.footer-bar-navigation {
    border-top: 1px solid #434957;
    padding: 20px 0;
}

.footer-bar-navigation-button {
  text-decoration: none;
  padding: 8px;
  color: #165259e0;
}

.footer-bar-navigation-button:hover {
  color: #000000;
}

@media (max-width: 656px) {
	
	.menu {
		display: none;
    }
	
	.welcome-footer {
		width: 100%;
    }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 20;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000000;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .menu {
    display: none;
    position: absolute;
    top: 90px;
    right: 0;
	width: 70%;
    flex-direction: column;
    background: #165259;
    padding: 20px;
    border-radius: 10px;
    z-index: 9999;
  }

  .menu.show {
    display: flex !important;
	flex-direction: column-reverse;
  }
  
  .dropdown-content.show {
	  margin-top: 25px;
	  background-color: #165259;
  }

  .menu a {
    margin: 10px 0;
    color: white;
    font-size: 18px;
  }
  
  .dropbtn {
    margin: 10px 0;
  }
  
  .members {
	  display: none;
  }
  
  .menu-mobile-only {
	display: flex;
  }
  
  .signin {
    display: unset;
    background-color: rgb(255 255 255 / 30%);
    padding: 10px 20px;
    border-radius: 9999px;
    font-weight: 600 !important;
    text-align: center;
  }
}