/* Make selected text gold on a red background */
::selection {
  color: white;;
  background-color: #64d5ea;;
}

.title{
  font-size:30px;
  line-height: 45px;
  color: white;
}

.sub-title{
  color: #64d5ea;
  font-size:15px;
  line-height: 20px;
}

.modal-content p{
  color: rgba(242, 241, 241, 0.8);
  font-size: 15px;
  line-height: 20px;
}

.text{
  position: absolute;
  display: block;
  width: 100%;
  justify-content: center; /*Centers the item*/
  text-align: center;
  bottom: 20px; /*Position from bottom*/
  z-index: 5;
}

.social{
  opacity: 50%;
  cursor: pointer;
}

.social:hover{
  transition: opacity 250ms ease-in;
  opacity: 100%;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 50; /* 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); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  z-index:100;
  background-color: #101E33;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 40px;
  border-radius: 24px;
  text-align: left;
  width: 70%;
  max-width: 600px; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: white;
  opacity: 50%;
  display: block;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  opacity:100%;
  text-decoration: none;
  cursor: pointer;
}

#myBtn{
  opacity: 50%;
  cursor: pointer;
}

#myBtn:hover{
  transition: opacity 250ms ease-in;
  opacity: 100%;
}

.fade-in{ animation: fadeIn 1.5s;}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}