h1 {
  font-weight: 600;
}

.column-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.responsive-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
  flex-direction: row;
}

.aboutText {
  margin-top: 0;
  margin-left: 60px;
  max-width: 400px;
}

.logo-image {
  width: 500px;
  height: 500px;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
  .column-container {
    width: 100%;
  }
  .responsive-container {
    flex-direction: column;
    width: 100%;
    margin: 0;
  }
  .aboutText {
    margin-top: 60px;
    margin-left: 0;
    max-width: none;
    padding: 15px;
  }

  .logo-image {
    width: 300px;
    height: 300px;
  }
}
