@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  text-align: center;
  color: white;
  background: linear-gradient(to bottom left, rgb(48, 47, 47), black 50%);
}

#panel {
  background: linear-gradient(to bottom, rgb(48, 47, 47), black 50%);
  padding: 30px;
  border-radius: 30px;
  box-shadow: 1px 1px 4px rgba(255, 255, 255, 0.2);
}

#ratings {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 150px;
  gap: 10px;
}
.rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
  border-radius: 20px;
  cursor: pointer;
}
.rating:hover,
.rating.active {
  box-shadow: 1px 1px 4px rgba(255, 255, 255, 0.5);
  background: linear-gradient(to bottom, rgb(48, 47, 47), black 50%);
  transition: all 0.1s ease;
}

#btn {
  padding: 10px;
  border-radius: 10px;
  border: none;
  background-color: #f3ba34;
  color: rgb(0, 0, 0);
  cursor: pointer;
  font-size: medium;
}
#btn:hover {
  transform: scale(1.03);
  transition: all 0.1s ease;
}
#btn:active {
  transform: scale(0.98);
  transition: all 0.1s ease;
}

.fa-heart {
  color: red;
  font-size: 30px;
  margin-bottom: 10px;
}
