html {
	background-image:url(images/nurple-static-bright.gif);
	font-family: Courier New;
}

body {
	margin:0;

}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 150px;

  width: 50%;
}

/*animation box*/
#shake:hover img { 
animation: shake 0.5s; 
animation-duration: 1s;
animation-iteration-count: infinite; 
-webkit-filter:blur(1px); 
	filter:blur(1px)
		transition}
@keyframes shake {
0% { transform: translate(1px, 1px) rotate(0deg); }
10% { transform: translate(-1px, -2px) rotate(-1deg); }
20% { transform: translate(-3px, 0.1px) rotate(1deg); }
30% { transform: translate(3px, 2px) rotate(0deg); }
40% { transform: translate(1px, -1px) rotate(1deg); }
50% { transform: translate(-1px, 2px) rotate(-1deg); }
60% { transform: translate(-3px, 1px) rotate(0deg); }
70% { transform: translate(3px, 1px) rotate(-1deg); }
80% { transform: translate(-1px, -1px) rotate(1deg); }
90% { transform: translate(1px, 2px) rotate(0deg); }
100% { transform: translate(1px, -2px) rotate(-1deg); }
} 


/* Style the Image Used to Trigger the Modal */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}


/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
}


/* Modal Content/Box */
	.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
.button {
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  background-color: #a93d50
}
/* Modal Content 2*/
	.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
.button {
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  background-color: #a93d50
}
	
/*hidden scrollbar*/
	html {
	overflow: scroll;
	overflow-x: hidden;
	}
	::-webkit-scrollbar{
	width: 0;
	background: transparent
}
	::-webkit-scrollbar-thumb{
	background: transparent;
	}}



/*highlighter*/
	::selection{
	background: #ad3046;
	color:#fffafa;
}

/*link color*/
	a {text-decoration: none;color: #f86b76;}