@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
  background-color: black;
  margin: 0px;
  padding: 0px;
  font-family: 'Inter';
  padding-inline: 24px;
  max-width: 567px;
  margin-inline: auto;
}

header .balance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

header h2 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #9CA3AF;
  margin: 0px;
}

header p {
  font-family: 'Inter';
  font-style: normal;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #FACC15;
  margin: 0px;
  font-weight: 500;
}

header .profile {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #171717;
  width: 100%;
  padding-block: 8px;
  border-radius: 8px;
  margin-top: 16px;
  color: #60A5FA;
}

main h1 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 27px;
  text-align: center;
  color: #FFFFFF;
}

main h1 span {
  letter-spacing: 0.35px;
  margin: 0px;
  margin-top: 24px;
}

main h3 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #9CA3AF;
  margin: 0px;
  margin-top: -10px;
}

.items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 32px;
}

.items .item {
  width: calc(100% - 28px);
  height: 125px;
  align-items: center;
  display: flex;
  padding-inline: 14px;
  gap: 16px;
  border-radius: 12px;
}

.items .item h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  margin: 0px;
  margin-bottom: 6px;
}

.items .item p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #9CA3AF;
  margin: 0px;
}

.items .item img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}

.items .item:nth-child(1) {
  background-color: rgba(152, 27, 27, 0.5);
}

.items .item:nth-child(2) {
  background-color: rgba(30, 64, 175, 0.5);
}

.items .item:nth-child(3) {
  background-color: rgba(195, 120, 34, 0.5);
}

.news {
  width: calc(100% - 28px);
  align-items: center;
  display: flex;
  padding-inline: 14px;
  gap: 16px;
  border-radius: 12px;
  background-color: #171717;
  margin-top: 20px;
  margin-bottom: 24px;
}

.news p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  flex: none;
  order: 0;
  flex-grow: 1;
}

.news img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}