@import url('https://fonts.googleapis.com/css?family=Open+Sans');

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: 'Inter', 'Open Sans', sans-serif;

  background: orange url("/") no-repeat center center;
  background-size: cover;

  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.main-header {
  padding-bottom: 60px;
}

.main-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.main-header p {
  font-size: 1.25rem;
  color: #555;
  font-weight: 400;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 60px;
}

@media (max-width: 1000px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-top: 20px;
}

.feature-card p.feature-desc {
  font-size: 1rem;
  color: #333;
  margin-top: 12px;

  background: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);

  max-width: 260px;
  line-height: 1.4;
  text-align: center;
}



.image-placeholder {
  width: 100%;
  max-width: 300px;
  height: 400px;
  background-color: #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888;
  font-style: italic;
  font-size: 0.9rem;
}

#left,
#right,
#formBox,
#target,
#input,
#renderButton {
  display: none;
}
