@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  list-style: none;
  text-decoration: none;
  background: #f1f1f1;
  color: #313131;
}

body {
  font-family: "Montserrat", sans-serif;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2% 8%;
  background: #f1f1f1;
  color: #313131;
}

.mail a {
  display: flex;
  font-size: 14px;
  font-weight: 500;
}

.mail a i {
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
  font-weight: 500;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #313131;
  font-size: 14px;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.hamburger i {
  font-size: 30px;
  color: #313131;
  cursor: pointer;
}

.main {
  padding-top: 50px;
  width: 80%;
  height: 80vh;
  margin: 0 auto;
  line-height: 25px;
}

.main h1 {
  font-size: 36px;
  margin: 15px 0;
}

.main h4 {
  font-size: 16px;
  margin: 10px 0;
}

.main h3 {
  font-size: 24px;
  margin: 10px 0;
}

.main p {
  font-size: 16px;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}

.footer .copyright p strong a {
  background: #313131;
  color: #f1f1f1;
  /* font-size: 12px; */
  text-decoration: none;
  /* margin-right: 30px; */
}

.footer .copyright p {
  padding: 3px 0;
  background: #313131;
  color: #f1f1f1;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
}

/* Popup container */
.popup {
  display: none; /* Hide popup by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup h2 {
  margin-top: 30px;
}

/* Popup content */
.popup-content {
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  width: 80%;
  max-width: 600px;
}

.popup-content .links {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 0;
}

.popup-content .links li {
  margin: 10px 0;
}

.popup-content .links li a {
  text-decoration: none;
}

.popup-content .links li a:hover {
  text-decoration: underline;
  transition: all 0.9s ease-in-out;
}

/* Close button */
.close-btn {
  font-size: 30px;
  font-weight: bold;
  color: #313131;
  cursor: pointer;
}

.close-btn:hover {
  color: #000;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 10%;
    text-align: right;
    margin-right: 50px;
    z-index: 1;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 15px 0;
  }

  .hamburger {
    display: block;
  }

  .mail a p {
    display: none;
  }

  .mail a i {
    font-size: 28px;
  }
}
