@font-face {
  font-family: 'JacquesFrancois-Regular';
  src: url('/fonts/JacquesFrancois-Regular.ttf');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: rgb(200, 206, 201);
  font-family: 'JacquesFrancois-Regular', serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-card {
  background-color: rgb(74, 83, 68);
  border-radius: 24px;
  padding: 48px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 100%;
}

h1 {
  color: white;
  font-size: 2.5rem;
  text-align: center;
  font-weight: normal;
}

.feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
  .main-card {
    padding: 24px;
    margin: 16px;
    border-radius: 16px;
  }

  h1 {
    font-size: 1.8rem;
  }
}
