/* #top #right #bottom #left; */ 
.popup {
  margin: 70px auto;
  padding: 10px 10px 40px 10px;
  background: rgb(253,187,45);
  background: linear-gradient(125deg, rgba(253,187,45,1) 0%, rgba(255,237,200,1) 10%, rgba(61,194,168,1) 50%, rgba(255,237,200,1) 90%, rgba(253,187,45,1) 100%);
  border-radius: 95px;
  position: relative;
  transition: all 1s ease-in-out;
  border: 10px solid cyan;
  max-width: 500px;
}

.popup h2 {
  position: relative;
  top: 10px;	
  font-family: "crackman";
  src: url('/font/CrackMan.ttf');
  padding: 0 0 10px 40px;
  letter-spacing: 2px;
  word-spacing: 2px;
  color: #FFFB00;	
  text-shadow: 2px 2px 1px black, 0 0 35px white, 0 0 5px darkblue;

}
.popup .close {
  position: absolute;
  top: -20px;
  right: 0px;
  transition: all 200ms;
    
}
.popup .close:hover {
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}


div img{
    display: inline-block;
    vertical-align: middle;	
  -webkit-filter: drop-shadow(8px 8px 5px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(8px 8px 5px rgba(0, 0, 0, 0.3));" 
}

.fa {
  padding-right: 10px;
  text-align: left;
  text-decoration: none;
}

@media screen and (max-width: 888px) {
	.popup{
		margin: auto;	
		padding: 5px 10px 20px 10px;
		}
	 
}
