* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
}

.container {
  width: 100%;
}

.bg-icons {
  /* background: url(../img/icons/welcome/welcome-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: var(--brand-color);
  border-radius: 13px;
}

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

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

.confirmation-text p:nth-child(3) {
  color: var(--brand-color2);
  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 var(--brand-color);
}
.student,
.teacher {
  width: 375px;
  height: 375px;
  border-radius: 20px;

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



.student .outer-border,
.teacher .outer-border {
  width: 160px;
  height: 160px;
  border-radius: 50%;


  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 {
  
color: white;
}

.teacher p {
 
  color: white;
}