@import url("https://fonts.googleapis.com/css?family=Open+Sans:700");
html, body {
background: #DD2911;
color: #FFF;
}
html {
height: 100%;
display: flex;
}
body {
margin: auto;
}
.alrazy-title {
font-family: 'Open Sans', Helvetica, sans-serif;
font-weight: 700;
font-size: 6vw;
font-size: calc( 100vw / var(--char-total) );
position: relative;
padding: 0.4em 0;
overflow: hidden;
}
.alrazy-title:after {
content: '';
display: block;
position: absolute;
bottom: 0;
left: 0;
right: 0;
border-bottom: solid 0.2em;
-webkit-animation: underline 1s cubic-bezier(0.8, 0, 0, 1);
animation: underline 1s cubic-bezier(0.8, 0, 0, 1);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}