body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f1f3f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  width: 600px;
  padding: 40px;
  background-color: #fff;
  border: 2px solid #3a4047;
  border-radius: 8px;
  text-align: center;
}

.top-text {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
}

.profile {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 20px;
}

.avatar {
  width: 150px;
  height: 150px;
  background-color: #f16b6b;
  border-radius: 6px;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}

.username {
  padding: 10px 20px;
  background-color: #d9dce0;
  border-radius: 20px;
  border: none;
  font-size: 16px;
}

.description {
  width: 100%;
  padding: 10px 20px;
  background-color: #d9dce0;
  border-radius: 6px;
  border: none;
  margin: 20px 0;
  resize: none;
  height: 60px;
  font-size: 14px;
}

.gallery {
  display: flex;
  justify-content: space-around;
  margin: 30px 0;
  flex-wrap: wrap;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

.photo {
  width: 60px;
  height: 80px;
  background-color: #d9dce0;
  margin-bottom: 5px;
  border: 2px solid #3a4047;
  background-size: cover;
  background-position: center;
}

.gallery-item.blue .photo {
  border-color: blue;
}

.gallery-item.red .photo {
  border-color: red;
}

.gallery-item.yellow .photo {
  border-color: yellow;
}

button {
  padding: 5px 10px;
  margin: 2px;
  border: 2px solid #3a4047;
  border-radius: 10px;
  background-color: #f1f3f5;
  font-size: 14px;
  cursor: pointer;
}

button:hover {
  background-color: #d9dce0;
}

.upload-btn {
  padding: 10px 20px;
  background-color: #b4e7b4;
  border-radius: 6px;
  font-size: 16px;
  margin-top: 20px;
}

.category-select {
  margin-top: 10px;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #3a4047;
}
