.modal-backdrop {
  opacity: 0.2;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #070606;
  z-index: 1;
}
.modal {
  border-radius: 10px;
  margin: 40px 10px 20px 10px;
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 2;
  background-color: #fffdfa;
}
.modal .modal-content {
  padding: 10px 10px;
}
.modal .modal-content .modal-title {
  font-weight: bold;
}
/* Small devices such as large phones (640px and up) */
/* Medium devices such as tablets (768px and up) */
@media only screen and (min-width: 48em) {
  .modal {
    margin: 80px 40px;
  }
}
/* Large devices such as laptops (1024px and up) */
/* Largest devices such as desktops (1280px and up) */
