.modal {
    
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    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 {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fefefe;
    margin: auto;
    padding: 30PX;
    border: 1px solid #888;
    width: 40%;
    border-radius: 10px;
    min-height: 200px;
   
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
    animation:fadein .5s;}

    @keyframes fadein {
        from {
            opacity:0;
        }
        to {
            opacity:1;
        }
    }

    .modal-logo{
        position: absolute;
        border-radius: 50px;
        top: -40PX;
        left: 50%;
        transform: translate(-50%,0%);
        width: 100px;
        box-shadow: 1px 2px 2px     #848484c8;
    }

      /* The Close Button */
  .close {
    margin: 0%;
    flex: 0 1 auto;
    width: 10%;
    text-align: right;
    display: block;
    -webkit-align-self: flex-end;
    align-self: flex-end;
    color: #aaaaaa;
    font-size: 28px;
    font-weight: bold;
  

  }
  .modal-text{
    padding: 20PX;
    justify-self: center;
    align-self: center;
  }
  .modal-text input{
    margin-top: 5%;
    width: 100%;
    border: none;
    font-size: medium;
    border-bottom: 1px SOLID rgb(170, 170, 170);
  }

  #submit{
    width: 100%;
    margin: 5% 0%;
    padding: 3%;
    border: none;
    border-radius: 2px;
background-color: #FF5050;
color: white ;
font-size: large;
  }
  

  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }




  @media (max-width: 500px) {
    .modal-content { 
      width: 90%;}
  }