#myBtn {
  z-index: 1;
  position: fixed;
  top: 0;
  right: 0;
  width: fit-content;
  height: 40px;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 10px;
  outline: none;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: -1px 15px 30px -12px #374785;
  align-items: center;
}

#myBtn:active {
  top: 2px;
}


#myBtn:hover {
  box-shadow:
   -7px -7px 20px 0px rgba(255, 255, 255, 0.1),
   -4px -4px 5px 0px rgba(255, 255, 255, 0.1),
   7px 7px 20px 0px #0002,
   4px 4px 5px 0px #0001;
  transition: all 0.3s ease;
}


/* The Modal (background) */
.modal {
  display: none; 
  position: fixed; 
  z-index: 2; 
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.4); 
}

/* Modal Content */
.modal-content {
  background-color: rgba(36, 49, 94, 1);
  border-radius: 15px;
  margin: auto;
  padding: 30px;
  border: none;
  width: 70%;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex img{
  width: 40%;
  border-radius: 5px;
  margin: 20px;
}
.flex p {
  width: 30%;
  line-height: 2;
}

/* The Close Button */
.close {
  color: rgba(255,255,255,0.8);
  float: right;
  font-size: 2.5em;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  cursor: pointer;
}