:root {
  --mont: 'Montserrat', sans-serif;
}

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

body {
  position: relative;
}

h2,
p {
  font-family: var(--mont);
}

.menuOverlay {
  position: fixed;
  z-index: 3000;
  width: 0;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  height: 100vh;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transition: width 0.4s ease;
}

.menuOverlay a {
  text-decoration: none;
  color: rgb(2, 52, 48);
  font-family: var(--mont);
  font-weight: 600;
  transition: transform;
  transition-duration: var(--transition-duration);
}

.menuOverlay button {
  position: absolute;
  top: 30px;
  right: 20px;
  padding: 10px 12px;
  border: none;
  background-color: rgb(2, 52, 48);
  color: white;
  border-radius: 100%;
  transition: transform;
  transition-duration: 0.4s;
  display: none;
}

.menuOverlay button:hover {
  cursor: pointer;
  transform: scale(1.2);
}

.menuOverlay a:hover {
  cursor: pointer;
  transform: scale(1.1);
}


nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 10px;
  z-index: 1000;
  transition: background-color;
  transition-duration: 0.4s;
  padding: 10px;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

nav a {
  text-decoration: none;
  color: rgb(2, 52, 48);
  font-family: var(--mont);
  font-weight: 700;
  font-size: 13px;
  line-height: 27px;
}





.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  position: relative;
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  border-bottom: 3px solid rgb(2, 52, 48);
  transition: width;
  transition-duration: 0.4s;
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-right a {
  background-color: rgb(64, 179, 62);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.nav-right a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 0;
  height: 100%;
  border-radius: 20px;
  background-color: rgb(2, 52, 48);
  transition: width;
  z-index: -1;
  transition-duration: var(--transition-duration);
}

.nav-right a:hover::before {
  width: 100%;
}

.menu {
  border: none;
  color: rgb(224, 225, 204);
  background-color: rgb(2, 52, 48);
  padding: 10px 12px;
  font-size: 20px;
  border-radius: 100%;
  display: none;
  transition: transform;
  transition-duration: var(--transition-duration);
}

.mode {
  border: none;
  color: rgb(224, 225, 204);
  background-color: rgb(2, 52, 48);
  padding: 10px 12px;
  font-size: 20px;
  border-radius: 100%;
  transition: transform;
  transition-duration: var(--transition-duration);
}

.nav-right button:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.donate {
  padding-top: 100px;
}

.donate .title {
  text-align: center;
  font-family: var(--mont);
  font-size: 30px;
  color: rgb(2, 52, 48);
}

.prices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 90%;
  margin: 40px auto;
}

.p1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  border-radius: 20px;
  background-color: rgb(64, 179, 62);
  color: white;
  height: 300px;
}

.p1 h3 {
  font-family: var(--mont);
  font-weight: 700;
  font-size: 20px;
}

.p1 i {
  background-color: white;
  color: rgb(2, 52, 48);
  font-size: 26px;
  padding: 10px 12px;
  border-radius: 100%;
}

.donate p {
  text-align: center;
  color: white;
  font-weight: 500;
}

.p1 button {
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
  margin-top: 30px;
  font-weight: 600;
  color: rgb(2, 52, 48);
}

.custom {
  width: 90%;
  margin: 30px auto;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

.support {
  text-decoration: none;
  color: rgb(64, 179, 62);
  font-weight: 700;
  background-color: rgb(2, 52, 48);
  padding: 10px;
  border-radius: 50px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.support span {
  background-color: white;
  color: rgb(2, 52, 48);
  padding: 5px 15px;
  border-radius: 100%;
}

.values {
  width: 90%;
  margin: 80px auto;
}

.values .title {
  font-size: 30px;
  font-weight: 700;
  color: rgb(2, 52, 48);
  line-height: 50px;
  font-family: var(--mont);
  text-align: center;
}

.vals {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 70px;
  margin-top: 30px;
}

.vals h2 {
  color: white;
}

.vals p {
  color: white;
}

.val1,
.val2,
.val3,
.val4 {
  text-align: center;
  width: 33%;
  background-color: rgb(64, 179, 62);
  padding: 40px 10px;
  border-radius: 30px;
  transition: transform;
  transition-duration: 0.3s;
}

.val1:hover,
.val2:hover,
.val3:hover,
.val4:hover {
  cursor: pointer;
  transform: scale(1.1);
}

footer {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

footer a {
  text-decoration: none;
  color: green;
  font-family: var(--mont);
}

.foot {
  display: flex;
  justify-content: space-between;
  padding: 10px 30px;
  align-items: center;
  gap: 30px;
}

.socials {
  display: flex;
  gap: 35px;
  align-items: center;
}

.socials a {
  transition: transform;
  transition-duration: 0.4s;
}


.socials a:hover {
  transform: scale(1.1);
}

.foot p {
  font-family: var(--mont);
  font-weight: 500;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  nav {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-right button {
    display: block;
  }

  .prices {
    flex-direction: column;
  }

  .custom {
    flex-direction: column;
    gap: 30px;
  }


  .val1,
  .val2,
  .val3,
  .val4 {
    width: 80%;
  }

  .socials {
    gap: 10px;
  }

}