/* this is my first self-produced CSS sheet */

body {
	background-color:Azure;
	font-family: Geneva, Helvetica, Trebuchet;
	font-size: 11px;
	margin: 0;
	line-height: 2.0;
	padding: 0px 0px
	text-align: left;
	color: #000;
}
h1 {
	color:#000; 
	
}
h2 {
	border: 2px solid Violet;
	padding: 1px;
	margin: 15px;
	font-size: 119%;
}
p {
	text-align: right;
	color: black;
	font-family: sans-serif;
	font-size: 100%;
}

a:link {
	color: green;
	background-color: transparent;
	text-decoration: none;
}

a:visited {
	color: black;
	background-color: transparent;
	text-decoration: none; 
}

a:hover {
	color: red;
	background-color: transparent;
	text-decoration: underline; 
}

a:active {
	color: yellow;
	background-color: transparent;
	text-decoration: underline;
}


* {
  box-sizing:border-box;
}

header {
  background-color: #fff;
  padding: 5px;
  text-align: left;
  font-size: 11px;
  color: #000;
}

nav {
  float: right;
  position: fixed;
  top: 0;
  width: 100%;
  height: 19px;
  background: white;
  padding: 0px;
}

table {
  border: 1px solid #fff;
  border-collapse: collapse;
  border-spacing: 3px;
  position: left;
  width: 100%;
  list-style-type: none;
  padding: 15px;
}

th, td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px #000;
  width: 50%;
}

article {
  float: left;
  padding: 2px;
  width: 100%;
  background-color: #MidnightBlue;
  height: 50px; 

}

footer {
  background-color: #777;
  padding: 10px; 
  text-align: right;
  color: white;
}

@media (max-width: 600px) {
  nav, article {
    width: 100%;
    height: auto;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: visible;
	background-color: Ivory;
}

li {
	float:right;
}

li a {
	display: flex;
	color: Indigo;
	text-align: right;
	padding: 13px;
	text-decoration: none;
	justify-content: space-between;
	overflow: visible;
}

li a:hover {
	background-color: lightgray;
	color: darkblue;
}

.skill {
	background-color: WhiteSmoke;
	color: Turquoise;
	border: 2px solid black;
	margin: 17px;
	padding: 7px;
}

a:link, a:visited {
	background-color: Aquamarine;
	color: beige;
	padding: 5px 7px;
	text-align: right;
	text-decoration: italicized;
	display: inline-block;
}

a:hover, a:active {
	background-color: red;
}


