.container {

  width: 90%;
  max-width: 800px; 
  margin: 20px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.container h1 {
  margin-top: 30px;
  text-align: center;
  color: #333;
}

ul {
  animation: slideInTop 0.7s ease-out backwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; 
  list-style-type: none;
  padding: 20px 0; 
}

.userlist {
  color: black;
  font-size: 18px; 
  background: #f9f9f7;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  margin: 0;
  
  width: 100%;
  text-align: center;
}

li p {
  margin: 10px;
}

.homepagebtn {
  display: flex;
  justify-content: center;
  gap: 20px; 
  margin-top: 20px;
  flex-wrap: wrap;
}

.homepagebtn button {
  min-width: 120px;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

main {
  margin-bottom: 20%;
}

