*, body {
  margin: 0;
  padding: 0;
  font-family: sans-serif, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS';
}

body {
  background-color: #fafaff;
}

.main-wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-wrapper h1 {
  text-align: center;
  padding-bottom: 40px;
  font-weight: 400;
  color: rgba(103, 37, 244, 0.75);
}

.cards-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.card-item a {
  text-align: center;
  display: block;
  text-decoration: none;
  border: 1px solid #cbcbf8;
  padding: 20px;
  background-color: #f4f4ff;
  border-radius: 10px;
  transition: all 0.15s ease-in-out;
}

.card-item a:hover {
  transform: translateY(-5px);
  background-color: #f2f2ff;
}

.card-item span {
  display: block;
  padding-top: 20px;
  color: rgb(103, 37, 244);
  font-size: 18px;
}

.card-item img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  opacity: 0.9;
  border-radius: 100%;
}