html {
  cursor: url("cursorIcon.cur"), auto;
}

body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-family: "Roboto", sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  margin: 0;
  padding: 6rem 0 2rem 0;
}

.card {
  position: relative;
  text-align: center;
  width: 400px;
  padding: 6rem 2rem 2rem;
  margin: 0 auto;
  border-radius: 2rem;
  background-color: #1e1e1e;
  box-shadow: -5px 5px 0 0 #b783ff, 5px 5px 0 0 #ff9ed6, 0 10px 0 0 #3fded5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9);
}

.profileImage {
  position: absolute;
  object-fit: cover;
  top: -80px;
  left: calc(50% - 80px);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 5px solid #ad83fa;
  margin-top: 0.8rem;
  transition: transform 0.3s ease;
}

.card:hover .profileImage {
  transform: scale(1.05) rotate(3deg);
}

h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  font-family: "Press Start 2P", monospace;
  color: #9b59b6;
}

#projects {
  color: #00d1ff;
  padding: 0.5rem;
  font-size: 1.2rem;
  font-family: "Press Start 2P", monospace;
}

.card p {
  max-width: 260px;
  text-align: center;
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.4;
  margin: 0 auto 1.5rem auto;
}

#developerMessage {
  color: #333;
  font-weight: 700;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.project {
  background-color: #2a2a2a;
  border-radius: 0.8rem;
  padding: 0.8rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
  background-color 0.2s ease;
}

.project strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
}

.project a {
  display: block;
  margin: 0.3rem auto;
  padding: 0.7rem;
  border-radius: 0.6rem;
  font-size: 1rem;
  text-decoration: none;
  /*  background-color: #83409d;*/
  background-color: #613caa;
  color: #ffffff;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.project a:hover {
  background-color: #e634f6;
  /*background-color: #ff6f61;*/
  transform: translateY(-3px);

  color: #fff;
}

@media (max-width: 480px) {
  .card {
    width: 80%;
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
    margin-top: 3rem;
  }

  h1 {
    margin-top: 4rem;
  }

  .profileImage {
    margin: 0;
    width: 140px;
    height: 140px;
    left: calc(50% - 70px);
  }
}
