html {
  font-family: Inter, sans-serif;
  font-size: 16px;
}

body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #fb7b5b;
}

.home-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  flex-wrap: nowrap;
}

.home-image, .home-image1 {
  width: 200px;
  margin: 10px;
  object-fit: cover;
}

/* Media Query for Mobile Devices */
@media (max-width: 600px) {
  .home-container {
    flex-direction: column;
  }
}
