
body {
	margin-top: 10px;
	
}

p{
	color: 
lightblue;
}
a {
	width: 15px;
  height: 15px;

  padding: 15px;

}

/* mouse over link */

/* selected link */
a:active {
    background-color: yellow;
    color: black;
    -webkit-box-shadow: 39px 29px 43px -30px rgba(0,0,0,0.75);
		-moz-box-shadow: 39px 29px 43px -30px rgba(0,0,0,0.75);
		box-shadow: 39px 29px 43px -30px rgba(0,0,0,0.75);
  
}


#logo { text-align: center }

body {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  min-hight: 100vh;
}

*{
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing: 2px;
  size: 60px;
}

a {
  width: 80px;
  height: 15px;
  border: black;
  border-style: groove;
  background-color: transparent;
  border-radius: 1px;
  box-shadow: inset 0 0 0 0 #;
  transition: ease-out 0.3s;
  font-size: .7rem;
  outline: none;
}
a:hover {
  box-shadow: inset 150px 0 0 0 #23d5ab;
}

