@import url("https://fonts.googleapis.com/css?family=Comfortaa|Patua+One|Roboto+Mono:wght@400;600|Open+Sans");
@import "details.css";
/*Typography
--------------------------------------------------------------*/

body, button, input, select, textarea {
	color: #404040;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
}
h1 {
	font-family: "Roboto Mono",monospace;
	letter-spacing: 0.5px;
    margin-right: 1rem;
    margin-left: 2rem;
}
 h2, h3, h4, h5, h6 {
	font-family: "Roboto Mono", monospace;
	letter-spacing: 0.5px;
	margin: 0 0.3rem;
}

main {
	margin-top: 5px;
    margin-bottom: 5em;
    margin-right: 36px;
    margin-left: 56px;
}
article {
	margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 25px;
    margin-left: 25px;
}

footer>ul  {
	display: inline-grid;
	grid-auto-flow: row;
	grid-gap: 24px;
	justify-items: center;
	margin: auto;
  }
  
  @media (min-width: 500px) {
	footer>ul {
	  grid-auto-flow: column;
	}
  }
  footer>h5{
	color: white;
	margin: 0rem 0rem 2rem 0rem;
	padding: 0rem;
	font-size: small;
	font-weight: lighter;
  }
  li>a {
	color: white;
	text-decoration: none;
	box-shadow: inset 0 -1px 0 hsla(0, 0%, 100%, 0.4);
    letter-spacing: 0px;
	margin: 1rem;
	padding: 0rem;
	font-size:large;
	font-weight: lighter;
  }
  
  li>a:hover {
	box-shadow: inset 0 -1.2em 0 hsla(0, 0%, 100%, 0.4);
  }
  
  footer>ul>li {
	display: flex;
	flex-direction: row;
	align-items: center;

  }

  footer>ul>li:last-child {
	grid-column: 1 / 4;
	grid-row: 1 / 2;
	font-size: large;
  }
  
  ul>li:hover ~ li p {
	animation: wave-animation 0.3s infinite;
  }
  
  li>p {
	  font-size: xx-large;

  }
  /* below is just for demo styling */
  
  footer {
	display: flex;
	flex-direction: column;
	height: 26vh;
	width: 100%;
	background-color: #002a38;
	font-family: Menlo, monospace;
  }
  
  @keyframes wave-animation {
	0%,
	100% {
	  transform: rotate(0deg);
	}
	25% {
	  transform: rotate(20deg);
	}
	75% {
	  transform: rotate(-15deg);
	}
  }
  