html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  background-color: #1e1e1e;

  color: wheat;
  font-family: "Roboto", sans-serif;
}

h1 {
  font-size: clamp(1.3rem, 7vw, 3rem);
  text-align: center;
  text-shadow: 1px 2px 2px grey;
}

h3 {
  text-align: center;
  padding: 0 10px;
}

h3,
label {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
}

.input-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

input {
  font-size: clamp(0.8rem, 2vw, 1.3rem);

  border-radius: 8px;
  outline: none;

  text-align: center;
  padding: 5px;
  margin-bottom: 1rem;
}

input:focus {
  outline: none;
}

.yourUserName {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 800;
  text-align: center;

  width: 15rem;
  height: 1.5rem;
  border-radius: 8px;

  margin: 0 auto;
}

.numberOfRepos{
  margin-left: 1rem;
}

button {
  cursor: pointer;
  background-color: #423d3d;
  color: wheat;
  width: 5rem;
  height: 2rem;
  border: none;
  border-radius: 5px;
  transition: 0.2s ease;
}

button:hover {
  background-color: #686666;
}

li {
  transform: translateY(60px);
  transition: all 0.4s ease;
}

.show-list {
  transform: translateY(0);
}
