/* General Styling*/

@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Headline&display=swap');
.stack-sans-headline-body {
  font-family: "Stack Sans Headline", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.playfair-display-playfairnorm {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
body{
  background-color: #f0f8ff;
}
h1, h3{
  color: #007BFF;
  font-family: "Stack Sans Headline", sans-serif;
}
a{
  text-decoration: none;
}
ul {
  list-style-type: none;
}
.flexbox{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
/* Header and Footer*/
header, footer{
  background-color: #2C3E50;
  display: flex;
  margin: auto;
  padding: 0;
  overflow: hidden;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#name{
  font-family: "Playfair Display", serif;
}
header{
  font-size: 0.55rem;
  line-height: 0.55rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; 
  justify-content: space-between;
}

header > *, footer > *{
  display: block;
  color: #007BFF;
  text-align: center;
  padding: 0.875rem 1rem;
}

#nav-right{
  flex-direction: row;
  gap: 2rem;
}

#footer{
  width: 100%;
  margin: auto;
}

.headlink{
  font-size: 1rem;
  line-height: 1rem;
}

#nav-spacer{
  height: 3.2rem;
  width: 100%;
}
/* Main Content*/
#main-content{
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* Photo Styling */
#avatar{
  border: 1px, solid, #f0f8ff;
  border-radius: 50%;
}
/* Poem Styling*/
#poem{
  color: #131F30;
  font-family: "Playfair Display", serif;
  margin: auto;
}