body, html {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  font-family: "Roboto", sans-serif;
}

nav {
  a {
    text-decoration: none;
    color: black;
    font-size: 1.5rem;
    &:hover {
      color: #ccc;
    }
    &:visited {
      color: black;
    }
  }
}

.main_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  width: 75%;
  height: 100%;
}

.nothing-card {
  padding: 20px 0 20px 0;
  max-width: 600px;
}

.nothing-head {
  font-size: 2rem;
  font-weight: bold;
}

.nothing-sub {
  font-size: 1.5rem;
}

.nothing-content {
  font-size: 1.2rem;
  padding: 10px 0 10px 0;
}

.results-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.avatarbox {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatarbox-label {
  font-size: 0.9rem;
  width: 100px;
}

.attribution {
  font-size: 0.8rem;
  padding: 10px 0 10px 0;
}

.contribution-label {
  padding: 0 0 10px 0;
}

.search-again {
  padding: 10px 0 0 0;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  gap: 20px;
}

.github-search-form {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.github-search-form input {
  width: 200px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 0 10px 0 10px;
}

button {
  width: 100px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-weight: bold;
  cursor: pointer;
  padding: 5px;
}

[data-loading] {
  display: none;
}

.fa-heart:hover {
  color: red;
  scale: 1.2;
}

@media only screen and (max-width: 600px) {
  .header {
    padding-left: 10x;
    font-size: medium;
  }
  .contribution-card img {
    width: 400px;
  }
}
