@import url('https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&display=swap');

:root {
    --primary:#F2C94C;
    --width-break:600px;
}

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

body {
    font-family: 'Klee One', cursive;
}

.main {
    margin: auto;
    max-width: var(--width-break);
    padding: 2rem 1rem;
    text-align: center;
}

textarea {
    border: 2px solid yellow;
    height: 15vh;
    width: 100%;
    display: block;
    margin: 1rem 0rem;
    padding: 0.5rem;
    font-family: 'Klee One', cursive;
    font-size: 1rem;
}

#txt-output {
    border: 2px solid yellow;
    height: 10vh;
    width: 100%;
    display: block;
    margin: 1rem 0rem;
    padding: 0.5rem;
    overflow: scroll;
    text-align: left;
}

.header {
    background-color: var(--primary);
    text-align: center;
    padding: 1rem;
}

footer {
    bottom:0;
    position: absolute;
    text-align: center;
    background-color: var(--primary);  
    padding: 1rem;
    width: 100%;
}

footer p {
    max-width: var(--width-break);
    margin:auto;
}

button {
    font-family: inherit;
    background-color:var(--primary) ;
    border:1px solid yellow;
    border-radius: 1rem;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
}
