html {
  height: 100%;
}

body {
  background-color: rgb(255, 170, 0);
  position: relative;
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

main {
  padding: 0 20px 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5em;
  padding-top: 2em;
}

h1 {
  font-family: Georgia, "Times New Roman", Times, serif;
}

h2 {
  font-size: 2em;
}

ul {
  margin-top: -1em;
}

/* CSS for navigation bar */

.logo {
  font-family: "Courier New", Courier, monospace;
  padding-left: 3em;
}

.navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 7%;
  z-index: 10;

  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;

  background-color: black;
  color: white;
  padding: 0px 0px;

  /* Debug border */
  /* border: solid red; */
}

.nav-list {
  display: flex;
  flex-direction: row;
  position: relative;
  right: 30px;
  list-style: none;
  padding-right: 3em;
  margin-top: 1em;
  font-family: "Courier New", Courier, monospace;
}

.navbar a {
  color: rgb(246, 176, 24);
  font-weight: bold;
  margin: 0 12px;
  text-decoration: none;
  letter-spacing: 2px;
}

p {
  font-size: x-large;
  font-family: "Times New Roman", Times, serif;
}

h3.entry-title {
  font-size: large;
}
p.entry-info{
  font-size: large;
}

p.entry-description {
  font-size: medium;
}

.about-image {
  padding-left: 63em;
  margin-top: -16em;
}

.about-text {
  padding-top: 0.5em;
}

a:hover{
  color: hsl(0, 4%, 82%);
  text-decoration: line-through;
}

/*contact form */



/* CSS for page footer */

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: rgb(255, 170, 0);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;
}
