body {
    background-color: lightgrey;
}

.row-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.card {
    width: 80rem;
}

.card > img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 0.1rem 2rem rgba(0, 0, 0, 0.3);
}

.row-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

button {
  padding: 1rem 1rem;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #616161;
  transform: scale(1.05);
}

button:active {
  background-color: #000000;
  transform: scale(0.98);
}