body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Background Pattern */
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e5e5f7;
  opacity: 0.8;

  opacity: 0.2;
  z-index: -1;
}

#profile-card {
  position: relative;
  width: 300px;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(34, 82, 204, 0.1);
  text-align: center;

  /* Center the profile card */
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
}

img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
  border: 4px solid #007bff;
  box-shadow: 0 0 0 4px #fff;
}

h1 {
  margin: 0;
  font-size: 24px;
  color: #333;
}

p {
  margin: 5px 0;
  font-size: 16px;
  color: #888;
}
.projects {
  text-align: center;
  margin-bottom: 10px;
  margin-top: 15px;
}

.projects h2 {
  font-size: 20px;
  color: #333;
}

.project-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-top: 5px 0;
}

.project-list li {
  margin: 5px;
}

.project-list a {
  text-decoration: none;

  color: #888;
  font-size: 16px;
}

.project-list a:hover {
  text-decoration: underline;
  color: #007bff;
}
.social-links {
  margin-top: 20px;
}
.tech-container {
  display: flex;
  justify-content: center; /* Optional: Center the items horizontally */
}

.tech-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Distribute items equally in each row */
  max-width: 400px; /* Adjust the maximum width to control the number of items per row */
}

.techStack {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 30px;
  font-size: 18px;
  background-color: #333; /* Add your desired background color here */
  transition: background-color 0.2s;
}

.social-links a {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 5px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 30px;
  font-size: 18px;
  transition: background-color 0.2s;
}

.github {
  background-color: #333;
}

.Email {
  background-color: #0088f7;
}

.linkedin {
  background-color: #0077b5;
}
.techStack {
  background-color: #007bff;
}
.social-links a:hover {
  background-color: #777;
}

.resume-download {
  margin-top: 20px;
}

.resume-download a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.resume-download a:hover {
  background-color: #0056b3;
}
* {
  margin: 0;
  padding: 0;
}
section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #3875d1;
  overflow: hidden;
}
section .air {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(https://1.bp.blogspot.com/-xQUc-TovqDk/XdxogmMqIRI/AAAAAAAACvI/AizpnE509UMGBcTiLJ58BC6iViPYGYQfQCLcBGAsYHQ/s1600/wave.png);
  background-size: 1000px 100px;
}
section .air.air1 {
  animation: wave 30s linear infinite;
  z-index: 1000;
  opacity: 1;
  animation-delay: 0s;
  bottom: 0;
}
section .air.air2 {
  animation: wave2 15s linear infinite;
  z-index: 999;
  opacity: 0.5;
  animation-delay: -5s;
  bottom: 10px;
}
section .air.air3 {
  animation: wave 30s linear infinite;
  z-index: 998;
  opacity: 0.2;
  animation-delay: -2s;
  bottom: 15px;
}
section .air.air4 {
  animation: wave2 5s linear infinite;
  z-index: 997;
  opacity: 0.7;
  animation-delay: -5s;
  bottom: 20px;
}
@keyframes wave {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: 1000px;
  }
}
@keyframes wave2 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -1000px;
  }
}
.open {
  margin: 0;
  border: #007bff;
}
@media (max-width: 768px) {
  #profile-card {
    top: 43%;
  }
}

.loader {
  width: 32px;
  height: 32px;
  position: relative;
  border-radius: 50%;
  color: #007bff;
  animation: fill 1s ease-in infinite alternate;
}
.loader::before,
.loader::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  left: 48px;
  top: 0;
  animation: fill 0.9s ease-in infinite alternate;
}

.loader::after {
  left: auto;
  right: 48px;
  animation-duration: 1.1s;
}

@keyframes fill {
  0% {
    box-shadow: 0 0 0 2px inset;
  }
  100% {
    box-shadow: 0 0 0 10px inset;
  }
}

#content {
  display: none;
}
