* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

body {
  height: 100dvh;
  display: flex;
  justify-content: center;
  gap: 2.5dvw;
  align-items: center;
  background-color: #f4f4f4;
  overflow: hidden;
}

.card {
  background-color: white;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 300px;
  height: 300px;
  border-radius: 12px;
  box-shadow: 5px 5px 16px lightgray;
  cursor: pointer;
  transition: 200ms;
}

.card:hover {
  transform: scale(1.1);
}

picture {
  padding: 8px;
  width: 40%;
  height: 50%;
  border-radius: 50%;
  background-size: cover;
}

p {
  font-size: 2rem;
  font-weight: 600;
}

span {
  font-size: 1.5rem;
}
