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

.profile-name h1 {
  color: #565656; /* Neutral dark gray color */
  font-size: 28px; /* Medium-large font size */
  font-weight: bold; /* Bold font weight */
  margin-bottom: 15px; /* Spacing below the heading */
  font-family: 'Comfortaa', sans-serif; /* Rounded font similar to Apple's aesthetic */
}


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

body {
  font-family: "Poppins", sans-serif;
}


.container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, 
    #000000, #111111, #222222, #333333, #444444, #555555, 
    #666666, #777777, #888888, #999999, #aaaaaa, #bbbbbb, 
    #cccccc, #bbbbbb, #aaaaaa, #999999, #888888, #777777, 
    #666666, #555555, #444444, #333333, #222222, #111111, 
    #000000);
  background-size: 800% 800%;
  animation: DarkerShadesFlow 5s ease infinite;
}

@keyframes DarkerShadesFlow {
  0% {background-position: 0% 50%}
  50% {background-position: 100% 50%}
  100% {background-position: 0% 50%}
}



.card {
  width: 370px;
  height: 430px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  padding-top: 80px;
  cursor: pointer;
  justify-content: space-between;
  padding-bottom: 0px;
  position: relative; /* Position the card relatively */
  top: -500px; /* Initially position the card off-screen */
  opacity: 0; /* Start with the card invisible */
  animation: dropAnimation 1s ease forwards 0.5s; /* Add a delay before the animation starts */
}

@keyframes dropAnimation {
  0% {
    top: -500px; /* Start above the screen */
    opacity: 0;
  }
  100% {
    top: 0; /* End at the natural position */
    opacity: 1;
  }
}

.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.terminal {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  font-family: 'Courier New', monospace;
  padding: 10px;
  border-radius: 4px;
  margin: 10px;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 40px;
  
}


.avatar {
  width: 100px;
  height: 100px;
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 50%;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Snowflake styles */
@keyframes snowfall {
  0% { transform: translateY(-10px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(110px); opacity: 0; }
}

.avatar::before, .avatar::after {
  content: '';
  position: absolute;
  width: 5px; /* Smaller snowflake size */
  height: 5px; /* Smaller snowflake size */
  background-color: white;
  border-radius: 50%;
  opacity: 0;
}

.avatar::before {
  left: 20%;
  animation: snowfall 3s linear infinite;
}

.avatar::after {
  left: 70%;
  animation: snowfall 4s linear infinite;
}



.profile-role {
  color: #6d6d6d;
  margin-bottom: 100dpx; /* Adjust the value as needed */
}

.card-footer {
  width: 85%;
  height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-right: 0; /* No padding on the right */
}


.upload {
  display: none;
}

/* CSS for the slow-motion fade-in animation */
.upload {
  opacity: 0;
  animation: fadeIn 3s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
