/* style.css */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  font-size: 24px;
  margin-top: 20px;
}

.message {
  max-width: 600px;
  margin: 20px auto;
  font-size: 18px;
  line-height: 1.6;
  padding: 0 10px;
}

input[type="password"] {
  padding: 10px;
  font-size: 16px;
  margin: 10px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #007acc;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #005fa3;
}

.avatar-wrapper {
  margin-top: 20px;
}

.avatar-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid white;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#mahiru-big {
  width: 250px;
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  margin: 20px auto;
}

.hidden {
  display: none;
}
