@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-VariableFont_slnt_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter";
  text-decoration: none;
  list-style: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(0, 0%, 8%);
}
body main {
  width: 100%;
  max-width: 24rem;
  background-color: hsl(0, 0%, 12%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 1.3rem;
  border-radius: 10px;
  padding: 35px;
}
body main img {
  width: 90px;
  height: auto;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
body main h1 {
  font-size: 1.5rem;
  color: hsl(0, 0%, 100%);
  line-height: 1.5;
}
body main h2 {
  font-size: 0.9rem;
  color: hsl(75, 94%, 57%);
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 8px;
}
body main p {
  color: hsl(0, 0%, 100%);
  font-size: 0.9rem;
}
body main ul {
  width: 100%;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body main ul a {
  display: block;
  background-color: hsl(0, 0%, 20%);
  color: hsl(0, 0%, 100%);
  padding: 14px 0;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s;
}
body main ul a:hover {
  background-color: hsl(75, 94%, 57%);
  color: black;
}/*# sourceMappingURL=main.css.map */