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

body,
html {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(Assets/grabient-grid-1754471810650.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.User_card {
  padding: 2rem;
  background: #f12711; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #f5af19,
    #f12711
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #f5af19,
    #f12711
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  height: 80%;
  width: 50dvw;
  border: 2px solid white;
  border-radius: 2rem;
}

.Follow_Container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.User_Info {
  display: flex;
  justify-content: space-around;
  padding: 1rem 2rem 1rem 2rem;
}

.info_Box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.User_Details .Username {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  letter-spacing: 0.4rem;
  color: white;
}

.User_Details .login {
  color: white;
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
}

.user_avatar {
  width: 150px; /* Set fixed width */
  height: 150px; /* Set same height */
  object-fit: cover; /* Crop extra parts to fit in circle */
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.246);
}

.User_SocialAccounts {
  width: 80%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 auto;
}

.User_SocialAccounts .bio .Bio_para {
  color: black;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.input_Container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 45%;
  margin: 0rem auto 2rem auto;
}

.input_Container .getUserBtn {
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.5);
  padding: 0.5rem;
}

.input_Container input {
  border: 1px solid rgb(255, 255, 255);
  border-radius: 3rem;
  background-color: rgba(255, 255, 255, 0.2);
  height: 4rem;
  padding: 0.5rem 2rem;
}

.input_Container input::placeholder {
  color: white;
  font-size: 0.89rem;
}

.btn button:hover {
  cursor: pointer;
}
.btn button:active {
  border: 1px solid black;
}

.X_Acc_Link {
  color: white;
  letter-spacing: 0.2rem;
  padding: 0.3rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 20rem;
}
