@font-face {
  font-family: "PlayfairDisplay";
  src: url("/static/font/PlayfairDisplay-VariableFont_wght.ttf");
  font-weight: 125 950;
  font-stretch: 75% 125%;
  font-style: normal;
}

@font-face {
  font-family: "PlayfairDisplay";
  src: url("/static/font/PlayfairDisplay-Italic-VariableFont_wght.ttf");
  font-weight: 125 950;
  font-stretch: 75% 125%;
  font-style: italic;
}

::-moz-placeholder{
  color:#808080;
  opacity:1
}

:-ms-input-placeholder{
  color:#808080
}

::-webkit-input-placeholder{
  color:#808080
}

body {
  background-color: #D0905D;
  font-family: PlayfairDisplay;
  box-sizing: border-box;
}

.paper-card {
  background: white;
  border-radius: 4px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    max-width: 400px;
}
.modal-content button {
    margin-top: 15px;
    padding: 10px 20px;
    cursor: pointer;
}
.modal.show {
    display: flex;
}