body {
    margin: 0;
    display: flex;
    flex-direction: column; /* чтобы элементы шли сверху вниз */
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fff;
}

img {
    max-width: 50%;   /* ограничиваем размер логотипа */
    height: auto;     /* сохраняем пропорции */
    margin-bottom: 20px; /* отступ от почты */
}

.email-container {
  font-family: sans-serif;
  font-size: 18px;
  text-align: center; /* центрируем текст внутри контейнера */
}

.eml::before {
  content: attr(data-user) "@" attr(data-domain);
}
