.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 200; /* Sit on top */
    padding-top: 60px; /* 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 */
  .modal-content {
    background-color: #2e2e38;
    margin: auto;
    padding: 20px;
    border: 1px solid #fafaf6;
    width: 50%;
    color: #ffffff;
  }

  .modal-header {
    height: 50px;
    border-bottom: solid 1px #ffffff;
  }

  .modal-body {
    padding: 30px 0px 30px 0px;
  }

  .modal-body .yellow {
    color: #ffe600;
  }

  .modal-body h3 {
    color: #ffe600;
  }

  .modal-body hr {
    border-bottom: #ffe600 solid 5px;
    width: 25%;
    margin: 30px 0px
  }

  .modal-footer {
    height: 50px;
    border-top: solid 1px #ffffff;
  }
   
  /* The Close Button */
  .close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    background-color: rgba(255,255,255,0.0);
    color: #ffffff;
    border: solid 0px rgba(255,255,255,0.0);
  }
  
  .close:hover,
  .close:focus {
    text-decoration: none;
    cursor: pointer;
  }

  .close-button {
    background-color: rgba(255,255,255,0.0);
    color: #ffffff;
    border: solid 1px #ffffff;
    float: right;
    padding: .5em .5em;
    position: relative;
    top: 0;
    box-shadow: none;
    transition: .3s;
    margin-top: 15px;
  }
  
  .close-button:hover,
  .close-button:focus {
    text-decoration: none;
    cursor: pointer;
    color: #ffe600;
    border: solid 1px #ffe600;
  }