* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
}
body {
  background: linear-gradient(
      292deg,
      rgba(255, 244, 190, 0.2) 5.83%,
      rgba(255, 247, 210, 0.2) 17.9%,
      rgba(255, 255, 255, 0.2) 78.03%
    ),
    linear-gradient(351deg, #ccdbff -27.41%, #fff 50.49%);
}
.container {
  width: 100%;
}

.bg-icons {
  background: url(../img/icons/welcome/bg-icons.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.wrapper {
  display: grid;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0 auto;
}

.confirmation-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.confirmation-text div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 92px;
  height: 20px;
  background: #00174f;
  border-radius: 13px;
}

.confirmation-text p:nth-child(1) {
  color: #fff;
  font-size: 11px;
}

.confirmation-text p:nth-child(2) {
  color: #00174f;
  text-align: center;
  font-size: 54px;
  font-weight: 700;
}

.confirmation-text p:nth-child(3) {
  color: #00174f;
  font-size: 1rem;
  letter-spacing: 2px;
}

.choose-category {
  width: 850px;
  height: 450px;
  background: #fff;
  border-radius: 20px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
}
.choose-category > a:hover {
  outline: 3px solid #ff0;
}
.student,
.teacher {
  width: 375px;
  height: 375px;
  border-radius: 20px;

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

.student {
  background: linear-gradient(137deg, #5ae4a7 5.12%, #00174f 105.03%);
}

.teacher {
  background: linear-gradient(52deg, #00174f 4.59%, #ccdbff 95.41%);
}

.student .outer-border,
.teacher .outer-border {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);

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

.student .outer-border div,
.teacher .outer-border div {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}

.student .outer-border div img,
.teacher .outer-border div img {
  width: 153px;
}

.teacher .outer-border div img {
  width: 142px;
  margin-top: 8px;
}

.student p,
.teacher p {
  font-size: 3rem;
  font-weight: 600;
}

.student p {
  background: linear-gradient(159deg, #fff 13.35%, #5ae4a7 102.54%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.teacher p {
  background: linear-gradient(238deg, #fff 44.44%, #ccdbff 80.05%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
