main {
  display: flex;
}

h1 {
  text-align: center;
  margin-top: 3ch;
  margin-bottom: 3px;
}

img {
  width: 400px;
  height: 300px;
}

.projects {
  border: 5px solid lightskyblue;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2ch;
  margin: 5% auto;
}

@media (max-width: 770px) {
  img {
    width: 300px;
    height: 200px;
  }

  main {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
