/* style.css */

body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #121212; /* dark grey background */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.feedback-container {
  background-color: #2c2c2c; /* container darker grey */
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
  max-width: 500px;
  width: 90%;
}

.logo {
  max-width: 240px;
  margin-bottom: 25px;
}

h1 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 10px;
}

.subtext {
  color: #cccccc;
  font-size: 16px;
  margin-bottom: 30px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 48px;
  margin-bottom: 10px;
}

.star {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.star:hover {
  transform: scale(1.3);
}
