* {
	font-size: 100%;
	list-style:none;
	margin:0;
	outline:none;
	padding:0;
	text-decoration:none;
  cursor: all-scroll;
}

*::selection {
	background:#eee;
	color:#000;
}

body {
	color:#000;
  font-family: 'Spectral', serif;
  /* font-weight: bold; */
}
a{
	color:inherit;
	text-decoration: underline;
}
p {
  font-size: 3vw;
  margin:1.5vw 15vw 0vh 3vw;
  opacity:0;
  line-height: 3.6vw;
	animation: fade .7s forwards ease-in;
  color:#000;
}
@media (max-width:600px){
	body{
		/* margin:5vw 5vw 0vh 3vw; */
		margin-left:3vw;
		margin-top:5vw;

	}
  p{
		 margin-bottom:3vw;
		 font-size: 6vw;
		 line-height: 6.5vw;
   }
}
p:hover {
	/* border-bottom:1px solid #000; */
}
#links{
	cursor:pointer;
}
#links:hover{
	color:lightgray
}
@keyframes fade{
  0% {opacity:0;transform: translate(5px)}
  100% {opacity:1}
}
