/* The Modal (background) */
.modalbuttons{
  display: flex;
  justify-content: center;
}
#cancelbutton{
  font-family: 'Andada Pro','Open Sans',sans-serif;
  font-size: 1rem;
  background-color: #3287a8;
  color: whitesmoke;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin: 1rem;
  cursor: pointer;
  border-radius: .2rem;
  border: none;
}
#quitbutton{
  font-family: 'Andada Pro','Open Sans',sans-serif;
  font-size: 1rem;
  background-color: gold;
  /*background-color: darkred;*/
  color: whitesmoke;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin: 1rem;
  cursor: pointer;
  border-radius: .2rem;
  border: none;
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 30vh; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content #fefefe */
.modal-content {
  font-family: 'Open Sans',sans-serif;
  font-size: 1rem;
  background-color: rgba(255,255,255,1);
  border-radius: 0.2rem;
  margin: auto;
  padding: 5rem 1rem 5rem 1rem;
  border: 1px solid #222;
  /*border: 1px solid #888;*/
  width: 500px;
  height: 200px;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}