@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.attribution {
  margin: 30px 0;
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(75, 94%, 57%);
}

body {
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 8%);
  font-family: inter;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card {
  min-width: 270px;
  background-color: hsl(0, 0%, 12%);
  padding: 16px 26px;
  text-align: center;
  border-radius: 10px;
  margin: 100px 20px 20px 20px;
}

img {
  width: 60px;
  border-radius: 100%;
  margin-bottom: 14px;
  margin-top: 12px;
}

h1 {
  font-size: 17px;
  font-weight: 500;
}

.sub-header {
  font-size: 0.7em;
  font-weight: 600;
  color: hsl(75, 94%, 57%);
  margin-top: 8px;
}

.qoute {
  font-size: 0.7em;
  margin: 20px 0 18px 0;
}

button {
  display: block;
  width: 100%;
  font-size: inter;
  font-size: 0.7em;
  font-weight: 600;
  padding: 10px 0;
  border: none;
  border-radius: 6px;
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 20%);
}

button {
  margin-bottom: 10px;
}

button:hover {
  cursor: pointer;
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 12%);
}
