body {
  font-size: large;
  margin: 50px 20px 20px 20px;
  max-width: 700px;
  display: block;
}

h2 {
  color: rgb(172, 19, 58);
  /* #AC133A */
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a.no-underline:hover {
  text-decoration: none;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: left;
}

.dynamic-img {
  width: 90%;
  height: auto;
  margin: 0px;
}

.form {
  width: 100%;
}

@media (min-width: 768px) {
  body {
    margin: 50px auto;
    max-width: 700px;
  }

  .container {
    display: flex;
    flex-direction: row;
    justify-content: left;
  }

  .image-container {
    margin-right: 50px;
  }

  .dynamic-img {
    width: 300px;
    height: 300px;
  }

  .form {
    width: 640px;
  }
}