.profile{
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  background-color: #333;
}

.profile img{
  display: block;
  width: 200px;
  height: 200px;
  object-fit:cover;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.uyebilgileri{
  display: block;
  border-radius: 10px;
  margin: 10px auto;
  padding: 10px;
  color:#eaeaea;
}

.preBtn {
  width: 200px;
  height: 40px;
  margin:5px 0px;
  border: none;
  border-radius: 40px;
  background: linear-gradient(to right,#bf953f,#fcf6ba,#b38728,#fbf5b7,#aa771c);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8em;
  color: rgb(121, 103, 3);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition-duration: 3s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.144);
  background-size: 200% 200%;
}

.prelogoIcon path {
  fill: rgb(121, 103, 3);
}

.preBtn:hover {
  transform: scale(0.95);
  transition-duration: 3s;
  animation: gradient 5s ease infinite;
  background-position: right;
}
