* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-top: 3rem;
  gap: 2rem;
  background-color: aliceblue;
}

.imgDiv img {
  border-radius: 6px;
}

.info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.info h2 {
  color: rgb(28, 28, 244);
}

.info button {
  padding: 1rem 3rem;
  border: none;
  background-color: rgb(0, 197, 0);
  border-radius: 6px;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  outline: none;
}

@media (min-width: 700px) {
  body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-top: 5rem;
    gap: 4rem;
  }
}
