@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300 800;
  font-stretch: 75% 100%;
  font-display: swap;
  src: url(./fonts/OpenSans-Italic.ttf) format('truetype');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 75% 100%;
  font-display: swap;
  src: url(./fonts/OpenSans.ttf) format('truetype');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
  margin: 0;
  padding: 0;
}

.alert {
  align-items: center;
  color: #132441;
  display: flex;

  background-color: #fff;

  font-family: 'Open Sans';
  margin: 50px;
  transform-origin: 56px center;
  width: fit-content;


  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0,0,0,0.25);
  border-radius: 9999px;

  overflow: hidden;
}

.avatar {
  border-radius: 50%;
  height: 112px;
}

.alert > div {
  margin-inline: 2rem 4rem;
  width: 100%;
}

.username {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-wrap: nowrap;
}

.username__char-mask {
  margin-bottom: 0;
  margin-top: -0.5rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  
  vertical-align: bottom;
}

hr {
  border: none;
  background-color: #DAF561;
  border-radius: 0.25rem;
  height: 0.25rem;
  position: relative;
  transform-origin: left center;
  z-index: -1;
}

.message {
  font-size: 1.25rem;
  font-weight: 600;
  text-wrap: nowrap;
}

.message__line-mask {
  margin-bottom: -2rem;
  margin-top: 0;
  padding-bottom: 2rem;
  padding-top: 0.25rem;
}