@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  display: grid;
}

#quote {
  font-family: 'Allura', cursive;
  font-size: 4vh;
  background-color: rgba(130, 130, 130, 0.4);
}

.card {
  background: url('https://picsum.photos/50/50');
  margin: auto;
  width: 70%;
  display: grid;
  align-items: center;
  height: 50%;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
}

button {
  position: absolute;
  height: 10vh;
  width: 70%;
  bottom: 15%;
}