* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #1e2328;
}
h1 {
  color: #ffffff;
  font-size: 40px;
  text-align: center;
  line-height: 100px;
}
h2 {
  color: #ffffff;
  font-size: 30px;
  text-align: center;
  line-height: 80px;
}
p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  text-align: center;
  line-height: 30px;
  margin-bottom: 20px;
}
.sheet {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sheet .block {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #282d32;
  width: 100%;
  height: 100px;
}
.sheet .block .name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  margin-right: 40px;
}
.sheet .block.alt {
  background-color: #32373c;
}
