body {
    background-color: rgb(39, 8, 8);
    display: flex;

}
.modal-wrapper {
    background: rgba(0, 0, 0, 0.508);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
  }
  .modal {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    max-width: 300px;
    width: 100%;
    background: wheat;
    padding: 20px;
    margin: 35vh auto;
    border-radius: 5px;
    position: relative;
  }
  p{
    margin-bottom: 2  s0px;
  }
  .modal a {
    text-decoration: none;
    background: rgb(0, 0, 0);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 10px;
  }
  .modal-close {
    color: rgb(0, 0, 0);
    border: 1px solid black;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    width: 20px;
    border-radius: 5px;
  }
  button {
    background: rgb(0, 0, 0);
    color: white;
    padding: 5px 10px;
    font-size: 1.5rem;
    border: 2px solid wheat ;
    border-radius: 5px;
    margin: 30px auto;
    cursor: pointer;
    box-shadow: 1px 10px 25px -9px rgba(255,255,255,0.75);
    -webkit-box-shadow: 1px 10px 25px -9px rgba(255,255,255,0.75);
    -moz-box-shadow: 1px 10px 25px -9px rgba(255,255,255,0.75);
  }