.open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

body {
  background-color: #3e92cc;
}

h1 {
  color: #1d3354;
  font-family: open sans;
}

h2 {
  color: #1d3354;
  font-family: open sans;
}

h3 {
  color: #1d3354;
  font-family: open sans;
}

#about-me-text {
  color: #1d3354;
  font-family: lato;
}

#project-text {
  color: #1d3354;
  font-family: lato;
}

#contact-me {
  color: #1d3354;
  font-family: lato;
}

#content {
  background-color: #7db5de;
  padding: 25px;
  margin: 5px;
  border-radius: 25px;
}

#about-me {
  background-color: #aed1ea;
  padding: 15px;
  margin: 5px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 3fr;
}

#about-img {
  width: 200px;
  padding: 5px;
  margin: 1rem;
}

#recent-projects {
  background-color: #aed1ea;
  padding: 15px;
  margin: 5px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 20px;
}

#contact-me {
  background-color: #aed1ea;
  padding: 15px;
  margin: 5px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 20px;
}

#project-box img {
  width: 300px;
  margin: 1rem;
}

ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

li {
  padding: 10px;
}

@media only screen and (min-width: 1090px) {
  #project-box {
    display: flex;
    flex-direction: row;
  }
}

@media only screen and (max-width: 1089px) {
  #project-box img {
    display: none;
  }

  #about-me img {
    display: none;
  }

  #about-me {
    display: inline-block;
  }
}

@media only screen and (max-width: 675px) {
  ul {
    flex-direction: column;
    justify-self: center;
  }
}
