.main {
  min-height: 90vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: "Courier New", Courier, monospace;
  background-color: black;
  color: white;
  padding-left: 4rem;
}

.footer {
  display: flex;
  padding: 2.1rem 0;
  border-top: 1px solid #eaeaea;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: white;
  min-height: 5vh;
}

.imageContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20%;
}

.image {
  max-width: 100%;
  height: auto;
}

.small_logo {
  margin-bottom: 1rem;
}

.title {
  font-size: 2rem;
  margin: 2rem 0;
}

.description {
  line-height: 1;
  margin: 2rem 0;
  font-size: 1.2rem;
}

.button {
  border-radius: 4px;
  background-color: white;
  border: none;
  color: black;
  font-size: 15px;
  padding: 20px;
  width: auto;
  cursor: pointer;
  margin-bottom: 2%;
  margin-right: 5%;
}

@media (max-width: 1000px) {
  .main {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}