@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
body {
  background-color: #1d1d1f;
  color: #fff;
  font-family: "DM sans", sans-serif;
}
a {
  text-decoration: none;
}
#nav-container {
  padding: 1% 7% 0%;

  font-weight: 700;
  font-size: 1.25rem;
}
h1 {
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 2rem;
}
ul {
  list-style: none;
  padding: 0;
}
p {
  font-weight: 400;
  font-size: 1.5rem;
}
/* Navbar */
.navbar {
  padding: 0 0 4.5rem;
}
.navbar-icon {
  width: 4rem;
  height: 4rem;
}
.nav-link {
  color: #fff;
}
.nav-item {
  padding: 0 12px;
}
.navbar-toggler {
  border: none;
  color: white;
}
.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.nav-link:hover {
  background: linear-gradient(to right, #007cf0, #00dfd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-item a:focus {
  color: #fff;
}

::selection {
  background: #00dfd8;
  color: #1d1d1f;
}
.columns {
  padding-right: 10%;
}
.contact-row {
  padding: 0 7% 12%;
}
.contact-text {
  margin-bottom: 3rem;
}
.contact-details ul a {
  color: #fff;
  margin-left: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: underline;
}
ul a:hover {
  color: #fff;
}
.contact-details li {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
ul i {
  font-size: 1.15rem;
}
.con-button {
  background-color: #282d2e;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.15rem;
}
.fa-gradient {
  background: linear-gradient(to right, #007cf0, #00dfd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.social {
  display: flex;
}
.social .con-button {
  margin-right: 2rem;
}
.social-con {
  margin: 4rem 0 1.5rem;
}
form {
  padding: 0 10%;
}
input[type="text"],
input[type="email"],
textarea[type="text"] {
  background-color: #282d2e;
  border: none;
  color: #fff;
  height: 45px;
}
textarea[type="text"] {
  height: 120px;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea[type="text"]:focus {
  background-color: #282d2e;
  border: none;
  outline: none;
  color: #fff;
}
.form-label {
  font-weight: 400;
  font-size: 1.25rem;
}
.btn {
  background-color: #00dfd8;
  color: #1d1d1f;
  border: #00dfd8;
  font-weight: 500;
}
.btn:hover {
  background-color: #00dfd8;
  color: #1d1d1f;
  border: #00dfd8;
}
.btn:focus {
  background-color: #00dfd8;
  color: #1d1d1f;
  border: #00dfd8;
}
button i {
  margin-left: 5px;
}
#footer {
  background-color: #00dfd8;
  width: auto;
  padding: 40px 40px 1px;
  font-family: "DM sans", sans-serif;
  color: #1d1d1f;
}
.social-icons {
  font-size: 1.5rem;
  display: flex;
  gap: 2rem;
  color: #1d1d1f;
  margin-top: 15px;
}
.foi {
  color: #1d1d1f;
}

.footer-container {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 30px;
}
.footer-container h1 {
  margin-top: 0;
}
.copyright {
  margin-top: 5rem;
  font-size: 1rem;
}
.footer-title {
  font-weight: 700;
  font-size: 3rem;
  color: #1d1d1f;
}
@media (max-width: 640px) {
  .footer-container {
    display: flex;
    align-items: start;
    flex-direction: column-reverse;
  }
}
@media (max-width: 992px) {
  form {
    margin-top: 12%;
    padding: 0;
  }
}
@media (max-width: 460px) {
  h1 {
    font-size: 2.5rem;
  }
  p {
    font-size: 1.25rem;
  }
  form {
    margin: 12% 0 8%;
    padding: 0;
  }
  .form-label {
    font-size: 1.1rem;
  }
}
#blob {
  background-color: white;
  height: 28vmax;
  aspect-ratio: 1;
  position: fixed; /* Fix the position */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(to right, #bd7680, #9dc0a4);
  animation: rotate 20s infinite;
  opacity: 0.8;
  z-index: -2; /* Negative z-index */
  transition: opacity 1s ease;
}

#blur {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: -1; /* Above the blob, below other content */
  backdrop-filter: blur(12vmax); /* Adjust the blur value as needed */
}
