
body {
  background-image: url(backdrop.png);
  background-color: darkblue;
  color: white;
  font-family: "Chelsea Market", system-ui;
  font-weight: 400;
  font-style: normal;
  padding-top: 30px;
  padding-left: 40px;
  padding-right: 40px
}

/* Figuring out the flexbox stuff took waaaay longer than I'd like to admit. I looked up reddit discussions where I would occasionally copy and paste basic commands, but I didn't use any full-on templates. */

.logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.scenery {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center
}

.citizens {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: black
}

.welcome {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-left: 20px;
  font-size: 25px
}
.sentences {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 40px;
  padding-right: 300px;
  font-size: 18px
}