body {
  font-size: 16px;
  background-color: black;
  color: green;
  font-family: monospace;
}

main {
  margin-top: .5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 85vh;
  border-color: green;
  /* border-style: solid; */
  overflow-y: auto;
  max-width: 50vw;
  gap: 1rem;
  -ms-overflow-style: none; /* Remove scroll bar from IE and Edge */
  scrollbar-width: none; /* Remove scroll bar from Firefox */

  h1, h2 {
    color: white;
    margin: 0px;
  }
}

/* Hide scrollbar for Chrome, Safari, and Opera */
main::-webkit-scrollbar {
  display: none;
}

article {
  width: 100%;
  
  h4 {
    color: white;
  }
}

figure {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 1rem 0px 0px 0px;
}

a {
  color: orange;
}

img {
  width: 500px;
  max-width: 75%;
}

.placeholder_container {
  min-height: 22px; /* This is to prevent the page from jumping when the header loads. */
  padding-bottom: .25vh;
}

.container {
  display: flex;
  justify-content: center;
}

.image_container{
  display: flex;
  justify-content: center;
}

.screenshot {
  max-width: 100%;
}

.seperator {
  border-style: solid;
  border-color: gray;
  border-width: 1px;
  width: 95%;
  color: gray;
}

.seperator_dashed {
  border-style: dashed;
  border-color: gray;
  border-width: 1px;
  width: 95%;
  color: gray;
}

.project_points {
  padding-left: 1rem;
 
  p {
    margin: 0px;
  }
}

.project_description {
  padding-left: 1rem;
}

.spacer {
  height: 1rem;
}

@media (max-width: 1440px) {
  main {
    max-width: 80vw;
  }

  img {
    max-width: 65%;
  }
}

@media (max-width: 800px) {
  
  img {
    max-width: 90%;
  }
}