html {
  height: 100%;
}

body {
  background-color: rgb(246, 252, 255);
  position: relative;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  font-family: 'Courier New', Courier, monospace;
}

main {
  padding: 0 20px 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* CSS for navigation bar */

.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: rgb(136, 190, 218);
  color: white;
  padding: 0px 0px;

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

.nav-list {
  display: flex;
  flex-direction: row;
  position: relative;
  right: 30px;
  list-style: none;
}

.navbar a {
  color: white;
  font-weight: bold;
  margin: 0 12px;
  text-decoration: none;
  letter-spacing: 1px;
}

/* CSS for page footer */

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

/* CSS for Resume Entries */

.section-title {
    color : rgb(39, 81, 101);
    background-color : rgb(226, 226, 226);
}

.entry-title {
    color : rgb(92, 157, 190)
}

.entry-info {
    font-style: italic;
    color : rgb(125, 125, 125)
}

.project-description {
    color : rgb(45, 105, 132);
}

/* CSS for Contact Form */

#contact-form {
    padding: 20px;
    border-radius: 5px;
    border-color: pink;
    background-color: rgb(255, 217, 223);
    border-style: solid;
}

label {
    display: block;
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 90%;
  padding: 10px;
  margin-bottom: 20px;
  margin-right: 0px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  resize: none;
  font-family:'Times New Roman', Times, serif;
}

input[type="submit"] {
    font-family:'Courier New', Courier, monospace
}

/*#contact-form {
    margin: 20px;
    padding: 20px;
    border-style: solid;
    border-color: pink;
    border-radius: 5px;
    background-color: rgb(255, 217, 223);
    display: flex;
    align-items: center;
    justify-content: space-between; 
    position: relative;
}*/

/* CSS for Home Page */

.about{
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    border-width: 25px;
    border-style: solid;
    border-color: pink;
    background-color: rgb(255, 217, 223);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 1;
    margin-left: 20px;
    font-size: large;
}

/* CSS for Blog */

.blog-images {
    align-items: center;
    justify-content: space-between;
}

/* CSS for Portfolio */

.project-image {
    border-style: dashed;
    border-width: 5px;
    align-items: center;
    color : rgb(45, 105, 132);
}
