* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  background-color: hsl(0, 0%, 8%);
  color: hsl(0, 0%, 100%);
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 290px;
  height: auto;
  background-color: hsl(0, 0%, 12%);
  padding: 1.5rem 1.5rem;
  border-radius: 10px;
}

img {
  width: 60px;
  border-radius: 50rem;
  height: auto;
  object-fit: cover;
  object-position: center;
}

ul {
  list-style: none;
  font-size: 0.8rem;
}

p {
  margin-top: 1.3rem;
  margin-bottom: 0.3rem;
  font-size: 0.7rem;
}

li {
  background-color: hsl(0, 0%, 20%);
  padding: 0.7rem 4rem;
  margin: 0.7rem 0;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

li:hover {
  background-color: hsl(75, 94%, 57%);
  cursor: pointer;
  color: hsl(0, 0%, 12%);
}

h2 {
  margin-top: 1.2rem;
  font-size: 1rem;
}

h3 {
  color: hsl(75, 94%, 57%);
  font-size: 0.7rem;
  margin-top: 0.4rem;
}
