body {
  background-color: #f7f7f7;
  background-image: url("{{ asset('survei/bg.png') }}");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.konten{
  margin-top: -70px;
}

h1 {
  color: #fff;
  font-size: 36px;
  text-align: center;
}

.logo {
  max-width: 100px;
  margin-bottom: 20px;
}

p {
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.emoji-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.emoji {
  display: inline-block;
  margin: 10px;
  text-align: center;
  text-decoration: none; /* Menghilangkan garis di tautan */
  cursor: pointer;
  transition: transform 0.3s;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}

.emoji img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.emoji p {
  margin-top: 0px;
  font-size: 16px;
}

.emoji:focus {
  outline: none;
}

.emoji:hover {
  transform: scale(1.1);
}

.selected {
  border: 2px solid #ff9800;
  box-shadow: 0 0 10px #ff9800;
}

button {
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #ff9800;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #ffa726;
}
