body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #ffffff;
  color: #333333;
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

h1 {
  text-align: center;
  margin: 80px;
  font-size: 60px;
  font-weight: normal;
}

#word-cloud {
  width: 50%;
  height: 40%;
  margin: auto;
}

#words {
  display: none;
}

#contact {
  text-align: center;
  margin: 60px;
  font-size: 30px;
}

a {
  color: #1f77b4;
  text-decoration: none;
}


@media only screen and (max-width: 600px) {
  .container {
    height: 80vh;
  }
  h1 {
    font-size: 40px;
  }
  #word-cloud {
    width: 80%;
  }
  #contact {
    font-size: 20px;
  }
}

