* {
	font-family: sans-serif;
}

body {
   background: black;
   text-align: center;
   display: grid;
   grid-template-columns: 150px auto 150px;
   grid-template-rows: 90px auto 60px;
   grid-template-areas: 
      "head head head"
      "nav article aside"
      "foot foot foot";
}
.resume {
	border: 8px double black;
}


.alink {
	color:black;
	font-size: 1em;
	z-index: 20;
	position: relative;
}

p span {
		font-weight:bold;
		font-size 1.1em;
}

#clock {
	 font-size: 2em;
      font-family: monospace;
      color: black;
      text-align: center;
      display: inline-block;
      perspective: 1000px;
}

.flip {
	display: inline-block;
	animation: flipIn 0.5s;
  }
  
   @keyframes flipIn {
      from {
        transform: rotateX(90deg);
        opacity: 0;
      }
      to {
        transform: rotateX(0deg);
        opacity: 1;
      }
    }

ul.a {
	list-style-type: disc;
}

ol {
	list-style-type: none;
}

.navButton {
	background-color: lightgray;
	border: double;
	text-align: center;
	color:black;
	cursor: pointer;
	width:100px;
}

#profile-pic {
    position: fixed;
    top: 98px;
    right: 7px;
    height: 150px;
    width: 145px;
    border: 3px solid lime; 
	border-radius: 12px; 
    z-index: 1; 
}

.spacer {
    height: 200px; /* or however tall you want the gap */
}

.ImHere {
	background-color: blue;
	border: double;
	text-align: center;
	color:yellow;
	cursor: pointer;
	width: 100px;
	
}

.pageTitle {
	text-align:center;
}


header {	
	font-size: 1.25em;
	background: navy;
	color:yellow;
	grid-area: head;
}


nav {
   background: khaki;
   grid-area: nav;
}

article {
   background: darkseagreen;
   grid-area: article;
   text-align:left;   
}

aside {
   background: khaki;
   grid-area: aside;
   
}

footer {
   background: khaki;
   grid-area: foot;
}

p {
	font-size: 1.10	em;
}

#update {
	margin: -20px;
	font-size: .75em;
	
}

a:hover {
  background-color: yellow;
  font-size: 15px;
}

h3 {
	padding: 5px;
}	


 