.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 250px; /* 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: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 21rem;
    border-radius: 0.5rem;
    
  }

  .deletion__title {
    font-weight: 700;
    font-size: 1.3rem;
  }

  .deletion__content {
    color: var(--clr-grayish-blue);
    margin: 1rem 0 0.8rem 0;
  }

  #cancel {
     padding: 0.5rem 1rem;
     background-color: var(--clr-grayish-blue);
     color: var(--clr-light-gray);
     text-transform: uppercase;
     border-radius: 0.5rem;
     border: 1px solid var(--clr-light-gray);
     margin: 0 0.4rem 0 0;
  }

  #deletion {
     padding: 0.5rem 1rem;
     background-color: var(--clr-soft-red);
     color: var(--clr-light-gray);
     text-transform: uppercase;
     border-radius: 0.5rem;
     border: 1px solid var(--clr-light-gray);
  }
  