#modal {
  background-color: rgba(0, 0, 0, 0.308);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#modal-content {
  background-color: white;
  padding: 1rem 2rem;
  border-radius: 6px;
  box-shadow: 1px 1px 8px 3px rgba(0, 0, 0, 0.5);
}

#modal-content p {
  margin: 1rem 0 2rem;
}

.modal-close-button-container {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.modal-bottom-buttons-container {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

#close-modal-btn {
  display: block;
  font-size: 64px;
  cursor: pointer;
  margin-right: 1rem;
}

#close-modal-btn:hover {
  color: teal;
}
