@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Source+Sans+Pro&display=swap');

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#main-wrapper {
  max-width: 100%;
  min-width: 250px;
  margin: auto;
  padding: 20px;
  color: #6C6D71;
  font-family: 'Source Sans Pro', sans-serif;
}

h1 {
  font-family: 'Noto Sans', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.2;
  color: #2F3441;
  text-align: center;
  margin-bottom: 0;
}

h2,
h3 {
  display: none;
}

h4 {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.01em;
  margin: 0;
}

.ranking-wrapper {
  margin-top: 20px;
  font-size: 16px;
}

#main-wrapper>a {
  display: block;
  width: 160px;
  margin: 20px auto 0;
  padding: 10px 20px;
  background: #63103E;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 30px;
}

#main-wrapper>a:hover {
  background: #90215e;
}

.ranking-wrapper>div {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
}

.ranking-wrapper>div>span {
  line-height: 32px;
}

.ranking-wrapper>div>span:nth-child(1) {
  font-size: 18px;
}

.ranking-wrapper>div>span:nth-child(1)::before {
  content: '#';
}

.ranking-wrapper>div>svg,
.ranking-wrapper>div>img,
.ranking-wrapper>div>span:nth-child(1)>span {
  width: 32px;
  height: 32px;
  margin: 0 5px 0 10px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}

.ranking-wrapper>div>span:nth-child(2) {
  flex: 1;
  padding: 0 10px;
}

.ranking-wrapper>div>span:nth-child(3) {
  flex: 1;
  padding: 0 10px;
}

.ranking-wrapper>div>span:last-child {
  align-self: flex-end;
}