body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
}

.content {
  flex: 1;
  background-color: #39455f;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.user-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #999;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.user-avatar img {
  width: 150px;
  height: 150px;
}
.user-email {
  font-size: 24px;
  margin: 0;
}

.logout-button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ff5722;
  color: white;
  border: none;
  cursor: pointer;
}
