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

span {
  color: #191970;
}
.card {
  width: 45%;
}

.left {
  float: left;
}

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

h1 {
  font-size: 5rem;
}

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

@media (max-width: 600px){
  .logo {
    width: 100px;
  }
  h1 {
    text-align: center;
    font-size: 55px;
  }
  .card {
    display: block;
    width: 100%;
    text-align: justify;
  }
  .tile-image {
    margin-bottom: 10px;
  }
}