

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap");



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

a {
  text-decoration: none;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #444;
}

::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
  border: 3px solid #444;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #bbb;
}



body {
  scrollbar-width: thin;
  scrollbar-color: #888 #444;
}

.container {
  width: 90%;
  max-width: 30rem;
  margin: 2rem auto;
}

.head-section {
  text-align: center;
  margin-bottom: 2rem;
  color: #ffffff;
}

.head-section img {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.head-section h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.head-section p {
  font-size: 1.2rem;
}

.bio {
  margin-bottom: 1rem;
}
.social-links ul {
  list-style: none;
}

.social-links ul li {
  margin-bottom: 1rem;
  background: #ffffff1a;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: background 0.25s ease;
  border: 1px solid #ffff;
  box-shadow: 0 0 20px #ffffff33;
}

.social-links ul li:hover {
  background: #ffffff33;
}


.social-links ul li a {
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 1rem;
  text-decoration: none;
}

.social-links ul li a i {
  font-size: 1.8rem;
  margin-right: 1rem;
}

.social-links ul li a span {
  flex: 1;
  font-size: 0.9rem;
}
/* Styling for the button */
#saveContactBtn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff1a; /* Primary color for the button */
  color: #ffffff;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
  width: 100%;
  text-align: left;
}

#saveContactBtn:hover {
  background-color: #3570bd;
  transform: translateY(-2px);
}

/* Icon styling */
#saveContactBtn i {
  font-size: 1.5rem;
  margin-right: 1rem;
}

/* Text styling inside the button */
#saveContactBtn h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
}

#saveContactBtn p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.social-links ul li.button {
  animation-delay: 1.2s;
}

.swal-wide {
  width: 400px !important;
  color: white;
}

.website {
  background-color: #636363;
}
.linkedin {
  background-color: #0e76a8;
}
.instagram {
  background-color: #fd5949;
}
.facebook {
  background-color: #1877f2;
}
.twitter {
  background-color: #1da1f2;
}
