*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: monospace;
    white-space: pre-wrap;
    
    background: lightgray;
    color: darkblue;
    padding: 2rem;

    display: flex;
    flex-direction: column;
    min-height: 100svh;
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
}

#output {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    line-height: 1.6;

    flex-grow: 1;
}

p{
    min-height: 16px;
}