h1 {
  color: var(--mainColor);
}

.image-container {
  display: flex;
  width: 80%;
  align-items: center;
  background-color: white;
  margin: 0 auto;
  border-radius: var(--borderRadius);
  justify-content: center;
  /* This will center both containers horizontally */
}

.container-left {
  flex: 0 1 auto;
  margin: 0 auto;
  padding: 2em;
}

.container-right {
  flex: 0 0 35%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--borderRadius);
  padding: 15px;
}

.container-right img {
  border: 2px solid var(--mainColor);
  width: 100%;
  object-fit: cover;
}

form {
  display: inline;
}

form #start,
form #more {
  width: 8em;
  font-size: 18px;
  text-align: center;
  transition: background-color 0.6s ease, color 0.6s ease;
}

form #start {
  margin-right: 2em;
  margin-bottom: 1em;
  padding: 17px;
  color: white;
  background: var(--mainColor);
  border: 0;
}

form #start:hover {
  background-color: rgba(0, 0, 139, 0.2);
  color: var(--mainColor);
  box-shadow: 12px 12px 12px rgba(0, 0, 139, 0.15), -10px -10px 10px white;
}

form #more {
  padding: 15px;
  background-color: white;
  border: 2px solid var(--mainColor);
}

form #more:hover {
  background-color: var(--mainColor);
  color: white;
  box-shadow: 12px 12px 12px rgba(0, 0, 139, 0.15), -10px -10px 10px white;
}

.info {
  margin: 1em auto;
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  border-radius: var(--borderRadius);
  background-color: white;
  justify-content: space-between;
}

.info h3 {
  color: var(--mainColor);
}

.card {
  box-sizing: border-box;
  flex: 1 2 45%;
  margin: 1em;
  padding: 1em;
  border: 2px solid var(--mainColor);
  border-radius: var(--borderRadius);
  background-color: white;
  box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.6s ease;
}

.card:hover {
  box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.45);
}

.card img {
  border: 2px solid var(--mainColor);
  margin: 5px;
  width: 30%;
  float: right;
}

img {
  border-radius: var(--borderRadius);
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.1);
}

@media (max-width: min(768px)) {
  .image-container {
    width: 100%;
  }

  .info {
    width: 100%;
  }

  .card {
    flex: 1 1 100%;
  }

  .container-right {
    display: none;
  }
}