/* Add this to your CSS panel */
body {
  margin: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  color: #FB6376;
  font-family: 'Arial, sans-serif';
  background: linear-gradient(to bottom right, #FFD700, #FF6347); /* Light orange to light red */
}

.name {
  display: flex;
  font-size: 6em;
}

.name span {
  transition: font-family 0.5s;
}

.name:hover span {
  font-family: 'Impact, sans-serif'; /* Change to your preferred font on hover */
}

.bio {
  font-size: 0.9em;
  font-weight: light;
  color: #fff;
  font-family: 'Arial';
}

.profile-container {
  position: relative;
  z-index: 1;
  width: 120%;
  max-width: 1400px;
  margin: 60px;
  padding: 60px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.profile-header {
  text-align: center;
  margin-bottom: 20px;
}

#profileImageInput {
  display: none;
}

 #.profile-picture {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 5px;
  margin-top: 10px;
}

.background-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
  animation: moveText 15s infinite linear;
}

@keyframes moveText {
  0% {
    transform: translateY(0);
  }
   100% {
     transform: translateY(-500%);
   }
}

.round-button {
  border-radius: 80%;
  padding: 20px;
  cursor: pointer;
  margin: 10px;
}

.white-button {
  background-color: #7CFEF0;
  color: #000;
  border: none;
  }

.stars {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.stars span {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: twinkle 2s infinite alternate;
}

.stars span {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  animation: twinkle 2s infinite alternate;
}

@keyframes twinkle {
  from { background-color: rgba(255, 255, 255, 0.8); }
  to { background-color: rgba(255, 255, 255, 0); }
}

.star:nth-child(1) {
  top: 10%;
  left: 15%;
}

.star:nth-child(2) {
  top: 20%;
  left: 40%;
}

canvas {
  display: block;
}

/* Add more .star styles as needed */