body {
  background-color: rgba(255, 196, 255, 0.142);
}

.container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 70vh;
  border-radius: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.389);
}

.btn {
  margin-top: 0.3em;
  font-size: 2rem;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  background-color: aqua;
  padding:10px 15px;
  margin-bottom: 20px;
  box-shadow: 4px 4px 1px rgba(221, 0, 255, 0.319);
  transition: 0.2s all;
}


.btn:active {
  transform: scale(0.90);
  box-shadow: 2px 2px 0.5px rgba(221, 0, 255, 0.319);
}