body {
    padding: 0 5%;
}

input,
select,
textarea {
    background-color: #fff;
    border-radius: 2px;
    border: 1px solid #dcdcdc;
    color: #12302e;
    font-size: 17px;
    font-weight: 400;
    padding: 14px 16px;
    width: 100%;
}

a {
    text-decoration: none;
}

.tool-header {
    text-align: center;
}

.tool-header .intro {
    margin: 40px auto;
    font-size: 21px;
}

p.intro {
    text-align: left !important;
    font-size: 21px;
}

.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.col-2 {
    width: calc(50% - 10px);
}

.tool-form, pre {
    width: 80%;
    margin: auto;
}

.text-center {
    text-align: center;
}

.tool-form label {
    font-weight: 600;
}

.tool-form textarea {
    height: 250px;
    resize: none;
    font-size: 16px;
    border-width: 2px;
    box-shadow: 0 0 0 8px #dedede33 inset;
    transition: 0.2s;
}

.tool-form textarea:focus {
    box-shadow: 0 0 0 8px #57e5ae33 inset;
}

.filters {
    display: flex;
    justify-content: center;
    margin: 15px 0 100px;
}

.filter {
    height: 47px;
    margin: 0 5px;
    padding-right: 10px;
    border: none;
    border-radius: 15px;
    background-color: #f9f9f9;
}

.filter select {
    border: none;
    background: transparent;
    font-size: 14px;
}

.filter-btn {
    display: block;
    height: 47px;
    padding: 0 15px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    color: #12302e;
    border: none;
    border-radius: 15px;
    background: #f9f9f9;
}

.filter-hr {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #efefef;
}

.entry-header, .intro {
    text-align: center !important;
}

@media (max-width: 1024px){
    .tool-header .intro {
        font-size: 18px !important;
    }

    .tool-form, .col-2, pre {
        width: 100%;
    }

    .col-2 textarea {
        height: 150px;
        font-size: 14px;
    }

    .col-2:first-child {
        margin-bottom: 20px;
    }

    .filters {
        display: block;
    }

    .filter {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .filter-hr {
        margin: 0;
        padding: 0;
        border-left: none;
    }

    .filter-btn {
        width: 100%;
    }
}
code,
pre {
    font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
    font-size: 12px;
    color: #12302e;
    border: 1px solid #e1e1e8;
    background-color: #f7f7f9
    padding: 0 5%;
}

code {
    padding: 2px 4px;
    white-space: nowrap;
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    line-height: 18px;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre;
    white-space: pre-wrap;
}

pre code {
    padding: 0;
    color: inherit;
    white-space: pre;
    white-space: pre-wrap;
    background-color: transparent;
    border: 0;
}

footer {
    text-align: center;
}