/*@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');*/
@font-face {
    font-family: 'Quicksand';
    src: url('fonts/Quicksand-Regular.woff2') format('woff2'),
        url('fonts/Quicksand-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('fonts/Quicksand-Bold.woff2') format('woff2'),
        url('fonts/Quicksand-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
* {
    box-sizing: border-box;
}

footer {
    width:100%;
    background: #000;
    color: #fff;
}
#footer-inner {
    max-width: 1200px;
    margin:auto;
    padding:30px;
    text-align: center;
}
article p , article  {
    font-size:17px;
}
body {
    margin:0;
    padding:0;
    background: #fff;
    font-family: "Quicksand", serif;
    overflow-y: scroll;
}
a {
    cursor:pointer;
}
article a {
    color:#00f;
}
h1,h2,h3 h4 {
    margin-top:20px;
    margin-bottom:20px;
    line-height:1.4;
}

footer {
    width:100%;
    background: #000;
    color: #fff;
}
article {
    width:100%;
    max-width:1000px;
    margin: 0px auto 50px auto;
    line-height:1.5;
    padding: 20px;
}
p,aricle,h1,h2,h3 {
    color:#000;
    text-align: center;
}
h1 {
    font-size:40px;
    text-align: center;
}

footer a {
    color:#fff;
    text-decoration: none;
}
textarea {
    width:100%;
    min-height:400px;
    display: block;
    font-family: 'Quicksand';
}
.output {
    width:100%;
    height:400px;
    display: block;
    border: 1px solid #000;
    overflow-y: scroll;
}
textarea ,.output {
    font-size:16px;
    padding: 20px;
}
.button ,.reset{
    cursor:pointer;
    width: fit-content;
    margin:30px auto 30px auto;
    background:#000;
    color:#fff;
    padding:10px 20px;
}
#copied {
    position: fixed;
    top:10px;
    width: fit-content;
    left:50%;
    transform:translateX(-50%);
    padding:10px 20px;
    border:1px solid #ccc;
    background:#117db5;
    color:#fff;
    text-align: center;
    opacity:0;
    transition: all 0.4s;
}