@font-face {
   font-family: myFirstFont;
   src: url(/font/sansation_light.woff);
}

* {
	font-family: myFirstFont;
}

ul {
  list-style-image: url('/images/sqpurple.gif');
}

mark { 
  background-color: green;
  color: white;
  font-family: Monotype;
  font-size: 22px;
}

.responsive {
	padding: 0 6px;
	margin: auto;
	width: 24.99999%;
}

.hover1 img {
	height: 380px;
	width: 380px;
	transition: all 1s ease;
}

.hover1 img:hover {
	width: 400px;
	height: 400px;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}