@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --attribution-color: hsl(228, 45%, 44%);
  --green: hsl(75, 94%, 57%);
  --grey700: hsl(0, 0%, 20%);
  --grey800: hsl(0, 0%, 12%);
  --grey900: hsl(0, 0%, 8%);
  --white: hsl(0, 0%, 100%);
}

.inter-400 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.inter-600 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.inter-800 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

body {
  background: var(--grey900);
  font-size: 0.8rem;
  color: var(--white);
}

ul {
  list-style: none;
}

a,
a:active,
a:link,
a:focus,
a:visited {
  color: var(--white);
  text-decoration: none;
}

a:hover {
  color: var(--grey900);
}

.attribution {
  font-size: 0.7rem;
  text-align: center;
}
.attribution a {
  color: var(--attribution-color);
}

.container {
  /* display: flex;
  justify-content: center; */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.card {
  display: flex;
  align-items: center;
  max-width: 24rem;
}

.card-detail {
  background: var(--grey800);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.card-image {
  border-radius: 50%;
  width: 5rem;
}

.card-item {
  font-size: 0.8rem;
  padding-top: 1rem;
}

.card-links {
  padding-top: 1rem;
  padding-right: 2rem;
}
.card-link {
  background: var(--grey700);
  border-radius: 0.5rem;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center
  width: 10rem;
  height: 2rem;
  padding: 0;
  padding-top: 0.8rem;
  margin-top: 0.8rem;
  width: 16rem;
}

.card-link:hover a,
.card-link:hover {
  background: var(--green);
  color: var(--grey900);
}

.user-name {
  font-size: 1rem;
}

.user-location {
  color: var(--green);
  font-size: 0.7rem;
  padding-top: 0;
}

.user-quote {
  font-size: 12px;
  /* text-align: center; */
}
