* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.cyan {
  color: hsl(178, 100%, 50%);
}

.white {
  color: #fff;
}

.gray {
  color: rgb(179, 174, 174);
}

.soft_blue {
  color: hsl(215, 51%, 70%);
}

.main_bg {
  background-color: hsl(217, 54%, 11%);
}

.card_bg {
  background-color: hsl(216, 50%, 16%);
}

.line_bg {
  background-color: hsl(215, 32%, 27%);
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body {
  font-family: "outfit", sans-serif;
  max-width: 1440px;
  font-size: 14px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

main {
  width: 350px;
  margin: auto;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 20px;
}

.image__component {
  width: 100%;
  border-radius: 20px;
  position: relative;
}

.image__component img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.image_hover {
  width: 100%;
  height: 100%;

  position: absolute;
  border-radius: 20px;
  top: 0;
  justify-content: center;
}

.image_hover:hover {
  cursor: pointer;
  background-color: hsl(178, 100%, 50%);
  opacity: 0.4;
}

.image_hover svg {
  display: none;
}

.image_hover:hover > svg {
  color: #fff;
  display: block;
}

.text__component {
  padding: 15px;
}

h1 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

p {
  line-height: 1.4;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.line {
  width: 95%;
  border: 1px solid hsl(215, 32%, 27%);
  margin: 5px 0 15px 0;
}

.profile__component {
  width: 100%;
  justify-content: flex-start;
  padding: 0 15px;
}

.profile__component div:nth-child(1) {
  margin-right: 8px;
}

.profile__image {
  border: 2px solid #fff;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.profile__image img {
  width: 100%;
  height: 100%;
}

h1:hover,
span:hover {
  color: hsl(178, 100%, 50%);
  cursor: pointer;
}
