* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  cursor: crosshair;
}

:root {
  --primary: #fff;
  --background-color: #f7f7f7;

  --gradient: linear-gradient(
    45deg,
    #845ec2,
    #d65db1,
    #ff6f91,
    #ff9671,
    #ffc75f,
    #f9f871
  );
}

body {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--gradient);
  background-size: 400%;
  animation: bg-animation 4s infinite alternate;
}

@keyframes bg-animation {
  0% {
    background-position: left;
  }
  100% {
    background-position: right;
  }
}

a:visited {
  color: inherit;
}

#main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 30px 20px 30px;
  border-radius: 5%;
  background-color: var(--background-color);
  filter: drop-shadow(0 0 0.5rem rgb(205, 205, 205));
}

#display-picture {
  height: 150px;
  width: 150px;
  border-radius: 15%;
  border: 0.5px solid black;
}

#project-container {
  display: none;
  width: 100%;
  max-height: 450px;
  scroll-behavior: smooth;
  overflow-y: auto;
  scrollbar-width: none;
}

#name-container {
  display: block;
}

#nav-container {
  display: flex;
  justify-content: center;

  gap: 10px;
  margin-top: 10px;
}

#top-container {
  text-align: center;
  display: flex;
  gap: 20px;
}

#top-container h1 {
  font-size: 1.5rem;
  font-weight: 500;
}

#job-title {
  font-style: italic;
  font-size: 0.8rem;
}

#social-links {
  list-style: none;
  margin-top: 5px;
}

#social-links li {
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5px;
  gap: 10px;
}

#social-links li img {
  height: 35px;
  width: 35px;
  margin-right: 10px;
}

#social-links li a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

#social-links li a:hover {
  transform: scaleX(1.1);
  transform: scaleY(1.05);
  transition: 300ms;
}

#social-links li a:hover {
  opacity: 70%;
}

#social-links li a i {
  margin-right: 10px;
}

#nav-container {
  margin-bottom: 5px;
  padding: 5px;
}

#nav-container button p {
  font-size: 17px;
}

.nav-links {
  border-radius: 10%;
  width: 100px;
  margin-top: 5px;
  border: none;
  background-color: var(--background-color);
  text-decoration: none;
  text-align: center;
  padding: 5px;
}

.nav-links a {
  text-decoration: none;
  color: black;
}

.nav-links p {
  text-decoration: none;
  color: black;
  font-size: 17px;
}
.nav-links button p {
  text-decoration: none;
}
.nav-links:hover {
  color: var(--gradient);
  transition: 250ms;
  transform: scaleX(1.1);
  transform: scaleY(1.05);
  opacity: 70%;
  transition: 300ms;
}

.social-icons {
  height: 35px;
  width: 100%;
}

.project-title {
  font-weight: 600;
  font-size: 1.3rem;
  padding-bottom: 10px;
}
.project-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 5px;
  border-radius: 3%;
}

.project-details {
  padding: 10px;
  word-wrap: break-word;
}

.project-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.project-image {
  height: 240px;
  border-radius: 3%;
}

.project-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 5px 10px 5px 10px;
  background-color: black;
  color: white;
  border-radius: 10%;
  width: fit-content;
}

.project-description {
  color: gray;
  padding-bottom: 10px;
  width: 320px;
  word-wrap: break-word;
  font-size: 13px;
}

.project-description p {
  word-wrap: break-word;
}

.project-link p {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px;
}

.project-link:hover {
  opacity: 75%;
  transform: scaleX(1.02);
  transition: 250ms;
}

.tech-stack {
  padding-bottom: 10px;
}
