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

:root {
  --DarkCyan: hsl(185, 75%, 39%);
  --VeryDarkDesaturated: hsl(229, 23%, 23%);
  --DarkGrayish: hsl(227, 10%, 46%);
  --DarkGray: hsl(0, 0%, 59%);
}

body {
  font-family: "Kumbh Sans";
  font-size: 18px;
  background: var(--DarkCyan);
  min-height: 100vh;
  min-width: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background-image: url("./images/bg-pattern-top.svg"),
    url("./images/bg-pattern-bottom.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: -400px -500px, 700px 400px;
}

section {
  background: white;
  border-radius: 20px;
  padding: 15px;
  width: 350px;
  height: 380px;
  margin: auto;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section > img {
  width: 350px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-top: -30px;
}

.profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.profile > img {
  border-radius: 50%;
  margin-top: -50px;
  border: solid 7px white;
}

.profile > div {
  display: flex;
  width: 220px;
  justify-content: space-around;
  margin-top: 20px;
}

.profile > div > h2 {
  font-weight: 400;
  color: var(--DarkGray);
}

.profile > p {
  font-weight: 400;
  color: var(--DarkGray);
  margin-top: 20px;
  margin-bottom: 30px;
}

.profileStatus {
  display: flex;
  width: 350px;
  justify-content: space-around;
  font-size: 13px;
}

.StatusOfNumbersProfile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.StatusOfNumbersProfile > p {
  font-weight: 400;
  color: var(--DarkGray);
  margin-top: 10px;
}

.alternative {
  content: "";
  height: 0.2px;
  width: 350px;
  background: var(--DarkGray);
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  body {
    height: 1370px;
  }

  section {
    width: 750px;
    height: 780px;
  }

  section > img {
    width: 750px;
    margin-top: -251px;
  }

  .profile > img {
    width: 200px;
    margin-top: -100px;
  }
}
