/* Universal Selector */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Body */

body {
    height: 100vh;
    background: #328cf3;
}

/* ASCII */

#ascii {
    background-color: #ffffff;
    width: 80vw;
    max-width: 600px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    padding: 80px 40px;
    text-align: center;
    color: #000000;
    font-size: 3.6vmin;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    font-style: italic;
}

#ascii span:nth-child(1) {
    color: #328cf3;
    font-size: 3em;
    display: block;
    font-style: normal;
}

#ascii span:nth-child(2) {
    font-size: 1.5em;
    font-style: normal;
}