* {
  list-style: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
  border: none;
  outline: none;
  border-radius: 0.5rem;
  color: #343434;
  text-decoration: none;
}
:root {
  --main: #1a6eff;
  --color-test: #e54c00;
}

body {
  background-color: #f1f1f1;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  font-family: sans-serif;
  text-align: center;
  overflow-x: hidden;
}

button,
input {
  background-color: #fff;
  padding: 1rem;
  font-size: 1.2rem;
}

.Profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 24rem;
}

.main_profile {
  background-color: #ffffff;
  margin-bottom: 2rem;
  width: 100%;
}
.header {
  width: 100%;
  height: 7rem;
  background-color: var(--main);
  border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
}
.profile {
  width: 9rem;
  height: 9rem;
  border-radius: 10rem;
  position: absolute;
  top: 35px;
  left: 31%;
  right: 31%;
  border: 0.7rem solid #ffffff;
}
.name {
  margin-top: 5rem;
  color: var(--main);
  margin-bottom: 0.5rem;
}
.job {
}
.sec {
  display: flex;
  justify-content: space-around;
  margin-top: 2.5rem;
}

.followerNum,
.followingNum {
  font-size: 2rem;
}
.follower {
  color: var(--main);
}

.following {
  color: var(--main);
}
.btns {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.8rem auto;
  padding: 0 1.5rem;
}

.followBTN,
.massageBTN {
  border-radius: 10rem;
  width: 10rem;
  padding: 0.6rem;
  background-color: var(--main);
  color: #fff;
  cursor: pointer;
}
.massageBTN {
  border: 3px solid var(--main);
  background-color: transparent;
  color: var(--main);
}
.select_colors {
  width: 100%;
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 0 2rem;
}
.color {
  width: 2rem;
  height: 2rem;
  border-radius: 10rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.blueC {
  background-color: #1a6eff;
}
.redC {
  background-color: #ff1466;
}
.greenC {
  background-color: #038f2b;
}
.purpleC {
  background-color: #5700b3;
}
.yellowC {
  background-color: #d8d044;
}
.color:hover {
  transform: scale(1.2);
}
.color:active {
  border: 2px solid var(--main);
}

@media only screen and (max-width: 420px) {
  .Profile {
    margin-left: 3vw;
    width: 94vw;
    margin-right: 3vw;
  }
}
