html {
  font-family: Inter;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
}

.navbar {
  position: -webkit-sticky;
  position: sticky;
  background-color: white;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid gray;
  margin: 0;
}

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

.navbar a {
  color: black;
  padding: 10px;
  margin-right: 10px;
  text-decoration: none;
  opacity: 1;
}

.navbar a:hover {
  opacity: 0.8;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3rem;
  border-top: 1px solid gray;
}

main {
  padding: 5rem 10rem 10rem 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

img {
  border-radius: 5px;
}

.project {
  display: flex;
  flex-direction: column;
}

.project-details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  justify-items: flex-start;
}

.learn-more {
  justify-content: center;
  align-content: center;
  text-decoration: none;
  color: black;
  border: 1px solid black;
  border-radius: 1px;
  width: max-content;
  padding: 1rem;
  transition: 140ms;
}

.learn-more:hover {
  background-color: black;
  color: white;
}

.resume-download {
  text-decoration: none;
  color: black;
  border: 1px solid black;
  border-radius: 1px;
  padding: 10px;
  width: max-content;
}

.resume-download:hover {
  opacity: 0.8;
}

svg {
  margin-bottom: -6px;
}

.submit {
  background-color: white;
  padding: 5px;
  border: 1px solid black;
  transition: 100ms;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input {
  padding: 5px;
  max-width: fit-content;
}

.submit:hover {
  cursor: pointer;
  opacity: 0.8;
}
