* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
html,
body {
  height: 100%;
  width: 100%;
}

#main {
  height: 100%;
  width: 100%;
  background-color: rgba(134, 159, 232, 0.564);
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  height: 300px;
  width: 250px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.463);
  padding: 20px;

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

.card img {
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 50%;
}

.card h2 {
  font-weight: 500;
  font-size: 26px;
}

.card p {
  font-size: 14px;
  font-weight: 600;
  color: #888;
  text-align: center;
}

.card button {
  border-radius: 50px;
  padding: 10px 30px;
  background-color: rgb(138, 62, 43);
  border: 2px solid rgb(138, 62, 43);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.card button:hover {
  background-color: transparent;
  color: rgb(138, 62, 43);
}
