.container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image, .description {
    height: 100%;
    flex: 1;
    align-items: center;
    justify-content: center;
}

.description {
    text-align: left;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 3em;
    margin-top: 20px;
}

@media (max-width: 1000px) {
  .container {
    display: flex;
    flex-direction: column;
  }
  .image {
    order: 2;
  }
  .description {
    order: 1;
    margin-top: 20px;
  }
}

.image img {
    max-width: 80%;
    min-width: 60%;
    padding: 10%;
}