 body {
  font-family: "Poppins", sans-serif;
  margin: 50px 50px 0 50px;
  background-color: #faf9f6;
  display: flex;
  flex-direction: column;
  min-height: 95vh;
}

.main {
  flex: 1
}

h1 {
  font-size: 5rem;
}

.tile-image {
height: 200px;
float: left;
margin-right: 50px;
}

.left {
  float: left;
}

.right {
  float: right;
}

.card {
  width: 45%;
}

.creative {
  color: midnightblue;
}

footer {
  text-align: right;
  color: midnightblue;
}

@media (max-width: 680px) {

h1 {
  text-align: center;
  font-size: 3rem;
  }

  .card {
    display: block;
    width: 100%;
    margin-bottom: 30px;
    text-align: justify;
  }

  .tile-image {
    width: 100%;
    display: inline;
    margin-bottom: 10px;
    object-fit: cover;
  }
 }