* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  flex-direction: column;
  font-family: Helvetica;
  background-color: oklch(0.97 0 0);
  height: 100vh;
}
::selection {
  background-color: #b5b5b5;
  color: whitesmoke;
}
.container {
  width: 60%;
  height: 60%;
  margin: auto;
  /* background-color: oklch(0.99 0 0); */
  /* box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.3); */
  border-radius: 6px;
  /* border: 0.1rem solid #b5b5b5; */
}
form {
  margin: auto;
  margin-top: 2rem;
  width: 100%;
  height: 5rem;
  display: flex;
}
h2 {
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 5rem;
}
.fa-magnifying-glass {
}
.input-icons {
  height: 100%;
  width: 60%;
  font-size: 200%;
  display: flex;
  margin: auto;
}
input {
  height: 4rem;
  width: 100%;
  border: 0.1rem solid #b5b5b5;
  background-color: oklch(98.984% 0.0026 230.462);
  padding-left: 3rem;
  border-radius: 6px;
}
/* input i {
  height: 4rem;
  width: 4rem;
} */
.icon {
  position: absolute;
  padding: 1rem;
  padding-top: 1.5rem;
  font-size: large;
}
p {
  margin: auto;
  margin-bottom: 1rem;
  font-weight: 300;
  font-size: 14px;
  color: #2f3436;
  text-align: center;
}

#profile {
  display: flex;
  width: 60%;
  height: 55%;
  background-color: oklch(98.984% 0.0026 230.462);
  margin: auto;
  border: 0.1rem solid #b5b5b5;
  border-radius: 1rem;
  transition: 0.3s ease;
  overflow: hidden;
}

#profile.hidden {
  display: none;
}

#error-message {
  margin: auto;
  margin-top: 2rem;
  font-size: 28px;
  text-align: center;
}

#error-message.hidden {
  display: none;
}

#profile-image {
  width: 33%;
  height: 100%;
  display: flex;
}
#profile-image img {
  height: 133px;
  width: 133px;
  margin: auto;
  border-radius: 50%;
  border: 0.1rem solid #2f3436;
}
#profile-info {
  margin-top: 1rem;
  margin-right: 1.5rem;
  text-justify: newspaper;
  width: 66%;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

#profile-name {
  margin-top: 1rem;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

#profile-stats {
  display: flex;
  margin-top: 1rem;
  width: 100%;
  gap: 1rem;
  font-weight: 500;
}

#profile-repos {
  margin-top: 0.5rem;
}
#profile-link {
  margin-top: 0.5rem;
  color: #5f5c5c;
  text-align: center;
  margin-bottom: 1rem;
}

#profile:hover {
  /* transition: 0.2s ease; */
  transform: scale(1.02);
}

#profile-location {
  color: #5f5f5f;
  margin-bottom: 0.5rem;
  display: flex;
  font-size: 16px;
}

.fa-location-dot {
  font-size: 12px;
  margin-top: 0.3rem;
  margin-right: 0.5rem;
}

#stats-text {
  display: flex;
  align-items: center;
  font-weight: 300;
}
