* {
    margin: 0;
    padding: 0;
    font-size: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #252525;
}

.White-Revenge {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    .form {
        max-width: 486px;
        display: flex;
        align-items: center;
        justify-content: center;
        row-gap: 24px;
        flex-wrap: wrap;
        padding: 20px;

        text, svg, tspan {
            font-size: 48px;
            flex: 1 1 100%;
        }

        input,
        button,
        .results {
            flex: 1 1 100%;
        }

        input,
        button,
        pre {
            padding: 6px 12px;
            border: 1px solid rgb(255, 255, 255, 0);
            background: rgb(0, 0, 0, 0.2);
            font-size: 16px;
            transition: border 0.2s;
            cursor: pointer;
            outline: none;
            box-shadow: none;
            color: white;
            box-sizing: border-box;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
        }

        input:hover,
        button:hover,
        pre:hover {
            border: 1px solid white;
        }

        button {
            text-transform: uppercase;
        }

        .results {
            max-width: 446px;
            position: relative;

            pre {
                width: 100%;
                min-height: 60px;
                height: auto;
                position: absolute;
                color: white;
                font-size: 16px;
                text-align: center;
                white-space: pre-wrap;
                word-wrap: break-word;
                
                span {
                    font-size: 16px;
                }
            }

            pre.hovered {
                border-color: green;
            }
        }
    }
}