body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #e2e8f0;
  background: linear-gradient(270deg, #0f172a, #1e293b);
}

h1 {
  text-align: center;
}

.container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.5s ease;

  &:hover {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
  }
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-input {
  flex: 1;
  outline: none;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  background-color: transparent;
  outline: 1px solid #46385f;
  color: #e2e8f0;

  &::placeholder {
    color: #e2e8f0;
  }
}

.search-button {
  padding: 8px 16px;
  cursor: pointer;
  background: linear-gradient(150deg, #5b4f74, #3a3a5d);
  color: #e2e8f0;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  transition: box-shadow 0.3s ease-in-out;

  &:hover {
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
  }
}

.user-info-container {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.user-info-container img {
  width: 100px;
  border-radius: 50%;
}

.repos-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.repo {
  margin: 5px 0;
}

.repo a {
  color: #e2e8f0;
  transition: 0.5s ease;

  &:hover {
    color: #848484;
  }
}
