/*RESET*/
/* Simple CSS Reset */
/* Box sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Remove default margins */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}

/* Remove list styles */
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img, picture {
  max-width: 100%;
  display: block;
}

/* Form elements inherit font */
input, button, textarea, select {
  font: inherit;
}

/**************
IMPORT FONTS
**************/
/*COLOR PALETTE*/
main {
  background-color: hsl(0, 0%, 8%);
  color: hsl(0, 0%, 100%);
  font-family: "Inter";
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .card {
  width: 350px;
  background: hsl(0, 0%, 12%);
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
  padding: 40px 40px;
  border-radius: 8px;
}
main .card__profile {
  align-self: center;
}
main .card__avatar {
  border-radius: 50%;
  max-width: 78px;
  margin: 0 auto;
  margin-top: 10px;
}
main .card__bio {
  font-size: 0.75rem;
  font-weight: 400;
  color: #eeeeee;
}
main .card__name {
  font-size: 1.375rem;
  font-weight: 400;
  margin-top: 20px;
}
main .card__location {
  font-size: 0.78rem;
  color: hsl(75, 94%, 57%);
  font-weight: 700;
  margin-top: 6px;
}
main .card__links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
main .card__btn {
  color: #eeeeee;
  background: hsl(0, 0%, 20%);
  padding: 5px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 10px;
  transition: color 0.3s ease-in, background-color 0.2s ease-in;
}
main .card__btn:hover {
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 12%);
}

/*# sourceMappingURL=styles.css.map */
