* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}
#app {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.screen {
  min-height: 100vh;
  display: none;
  width: 100%;
  max-width: 400px;
  padding: 20px;
  border-radius: 20px;
  background-color: #8257ef;
  color: white;
  text-align: center;
}

.screen.active {
  display: block;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
}

button {
  background-color: #fca837;  
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  margin: 10px 0;
}

button:hover {
  background-color: #37b7d6;
}

select {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  margin-bottom: 20px;
  border: 2px solid #ddd;
  border-radius: 10px;
}

.avatars {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  border: 2px solid white;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.avatarMain {
  width: 250px;
  height: 250px;  
}

.avatar:hover {
  border-color: #c29df9;
}
