@font-face {
  font-family: Inter;
  src: url(./Inter-Regular.ttf);
}
@font-face {
  font-family: InterB;
  src: url(./Inter-Bold.ttf);
}
@font-face {
  font-family: InterSB;
  src: url(./Inter-SemiBold.ttf);
}
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: hsl(0, 0%, 8%);
  height: 100vh;
  color: hsl(0, 0%, 100%);
}
body .container {
  background: hsl(0, 0%, 12%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 0.6rem;
  padding: 2rem;
  width: 400px;
}
@media screen and (max-width: 600px) {
  body .container {
    width: 80%;
  }
}
body .container img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
body .container h2 {
  font-family: InterB;
}
body .container h6 {
  font-family: InterSB;
  color: hsl(75, 94%, 57%);
  margin: 8px 0 16px;
}
body .container p {
  font-family: Inter;
}
body .container div {
  width: 100%;
}
body .container div a {
  width: 100%;
  margin: 0.9rem 0;
  padding: 0.8rem;
  text-align: center;
  display: block;
  font-family: InterSB;
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  background: hsl(0, 0%, 20%);
  border-radius: 4px;
  transition: background ease 300ms;
}
body .container div a:hover {
  background: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 8%);
}/*# sourceMappingURL=style.css.map */