/* reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* custom styles */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 10px;
    flex-direction: column;
}

main>span {
    display: block;
}

.typing-indicator {
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: .5;
    }

    51%,
    100% {
        opacity: 0;
    }
}

main {
    font-family: Impact, 'Arial Black', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2rem;
    background: #FFFFFF;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 50%, rgba(150, 150, 150, 1) 100%);
}

.yannick-container {
    font-size: 1rem;
    background-color: #efefef;
    padding: 5px 10px;
    border: solid 1px #ddd;
    font-weight: 400;
}