@font-face {
  font-family: 'AreaNormal';
  src: url('fonts/AreaNormal-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Inferi';
  src: url('fonts/Inferi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  box-sizing: border-box;
  font-family: 'AreaNormal', sans-serif;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: #000;
  background: #fff;
}

.center-wrapper {
  width: 100%;
  max-width: 420px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: url('img/pp.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 24px;
}

.block {
  margin-bottom: 24px;
}

.block:last-child {
  margin-bottom: 0;
}

h1,
p {
  font-size: 13px;
  margin: 2px 0;
  font-weight: 400;
}

h1 {
  font-weight: 600;
}

.list-block p {
  margin: 2px 0;
}

a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.copy-email {
  cursor: pointer;
}

.copy-email:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-note {
  opacity: 0.6;
  font-family: 'Inferi', sans-serif;
  font-weight: 400;
}

@media (max-width: 600px) {
  body {
    align-items: flex-start;
  }

  .center-wrapper {
    margin-top: 16px;
  }
}