.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/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  max-width: 350px;
  width:80%;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
      .modal .card {
            max-width: 350px;
            padding-top: 20px;
        }
        .modal .image-lineup {
            display: flex;
            justify-content: space-between;
        }

        .modal .dummy {
            width: 50px;
            height: 50px;
            background-color: rgba(119, 136, 153, 0.274);
            border-radius: 10px;
            margin:3px;
        }
        .modal .dummy:nth-child(1),.modal .dummy:nth-child(4){
            background-color: rgba(119, 136, 153, 0.174);
        }

        .modal .modal-h3 {
            font-size: 25px;
            font-weight: 600;
            text-align: center;
            margin: 30px auto 10px auto;
        }

        .modal .modal-text {
            font-size: 18px;
            font-weight: 500;
            text-align: center;
            margin: 10px auto 20px auto;
        }

        .modal .footer {
            background: rgba(119, 136, 153, 0.075);
            padding: 10px;
        }

