/* styles.css */
body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin-top: 50px;
}

button {
  padding: 10px 20px;
  margin: 10px;
  cursor: pointer;
}

#profile {
  margin-top: 20px;
  display: none;
}

/* styles.css */
#user-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

#user-picture {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

#user-name {
  font-size: 1.5em;
  margin-top: 10px;
}
