* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html, body, .content {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
body {
    background: #0075b4;
    font-family: 'Fira Mono', monospace;
}
.content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.text {
    font-style: italic;
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.text:hover {
    letter-spacing: 2vw;
    color: white;
}
h1 {
    color: rgba(255, 255, 255, 0.473);
    font-size: 11vw;
    font-weight: 700;
    text-align: center;
    cursor: default;
    text-align: left;
}