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;
}

span {
  color: midnightblue;
}

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

.card {
  width: 45%;
}

.card h2,
.card p {
  margin-top: 0;
}

.left {
  float: left;
}

.right {
  float: right;
}

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

@media (max-width: 680px) {
  .logo {
    width: 100px;
  }

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

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

  .card img {
    width: 100%;
    margin-bottom: 10px;
    display: inline;
    object-fit: cover;
    border-radius: 8px;
  }
}