body {
  background-color: rgb(233, 255, 241);
  position: relative;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  padding: 0;
  margin: 0;
}

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

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

  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 0px, 0px;
  background-color: rgb(41, 69, 27);
  color: white;
}

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

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

a:hover {
    color:rgb(197, 197, 255);
    text-decoration: underline;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(41, 69, 27);
  color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 2.5rem;
}

.about {
  display: flex;
  justify-content: center;
  margin: 10px 250px 40px 250px;
}

.about-text {
  font-size: 20px;
  padding-left: 2%;
  line-height: 2;
}

img {
  border: 6px solid #000000;
  border-radius: 10%;
}

.page-title {
  color: rgb(41, 69, 27);
  font-size: 50px;
}

#contact-form {
  display: flex;
  flex-direction: column;
  font-size: 25px;
}

input {
  width: 300px;
  padding: 15px;
  margin-top: 10px;
  font-size: 20px;
}

input[type="submit"] {
  background-color: rgb(41, 69, 27);
  color: rgb(255, 255, 255);
  width: fit-content;
  margin-top: 0;
}

textarea {
  width: 300px;
  padding: 15px;
  margin-top: 10px;
  font-size: 20px;
}

.project {
  display: flex;
  flex-direction: row;
  margin-left: 25%;
  margin-right: 25%;
}

.project-image {
  border: 0;
  border-radius: 0;
}

.project-details {
  background-color: rgb(236, 236, 236);
  padding-left: 30px;
}

.project-name {
  font-size: 30px;
}

.project-description {
  font-size: 20px;
}

.resume {
    display: flex;
    margin-left: 400px;
    margin-right: 400px;
    text-align: left;
    flex-direction: column;
  }

.resume ul, ol {
    list-style: circle;
    font-size: 19px;
    line-height: 37px;
  }

.section {
  font-size: 20px;
}

.entry-title {
  font-size: 18px;
}

.resume-download {
  background-color: rgb(41, 69, 27);
  color: white;
  padding: 15px;
}

.resume-download:hover {
  background-color: rgb(59, 110, 251);
  color: white;
}




