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

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

.creative{
  color: midnightblue;
}

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

.left{
  float: left;
}

.right{
  float: right;
}

.card{
  width: 45%;
}

@media(max-width:680px){
  h1{
    font-size: 3.5rem;
    text-align: center;
  }

  .logo{
    width: 100px;
  }

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

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