body {
    font-family: Arial, sans-serif;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.profile-dit {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px;
}

h1 {
    font-size: 1.5rem;
    margin: 10px 0;
	color: #bbbbbd;
}

p {
    color: #a2a2a3;
    margin-bottom: 30px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-btn {
    text-decoration: none;
    background-color: #000;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s, background-color 0.2s;
}

.link-btn:hover {
    background-color: #fff;
    transform: scale(1.02);
}

#search-button {


  border: 2px solid grey;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  padding: 12px;
  background-color: #000;
  border-radius: 8px;

  transition: transform 0.2s, background-color 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  
}
    
#search-button:hover {
    transform: scale(1.02);
}



#search-button svg {
  width: 30px;
  height: 30px;
}


span {
    padding:10px;
}

#search-button {
  background: linear-gradient(-45deg, #1f1f1f, #171717, #080808, #000000);
  background-size: 400% 400%;
  animation: gradient 3s ease infinite;
}
@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
