:root {
    --theme-color: #191919; 
    --white: #ffffff; 
    --black: #000000;
    --green: #6dc64e;
    --yellow: #e7db1e;
    --blue: #82c5ff;
    --purple: #ed75d2;
    --grey: #bcbcbc;
    --grey-strong: #303030;
    --red: #ff2f20;
    --red-dark: #99241c;
    --red-soft: #e58080;
    --orange: #f69a22;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Arimo', sans-serif;
    font-size: 14px;
}

h1 {
    font-size: large;
    margin-bottom: 15px;
}

hr {
    margin: 6.6px 0 6.6px 0;
}

#wrap img {
    border: 1px solid #eeeeee;
    padding: 3px;
    background-color: #f8f9f9;
    margin-left: -4px;
}

.img-clean {
    border: 0 !important;
    padding: 0px 0px 0px 0px !important;
    background-color: transparent !important;
    margin-left: 0 !important;
}

blockquote {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 40px;
    margin-inline-end: 40px;
}

@media only screen and (max-width: 899px) {
    blockquote {
        margin-inline-start: 15px;
        margin-inline-end: 15px;
    }
}

a {
    text-decoration: none;
    color: var(--red);
    position: relative;
}

a:visited {
    color: var(--red-dark);
}

input:not([type="radio"], [type="submit"], [type="button"]), select {
    border-radius: 5px;
    border: 1px solid gray;
    min-height: 26px;
    padding: 4px 8px 4px 8px;
}

input:not([type="submit"], [type="button"]), select {
    background-color: #fff;
}

input:not([type="submit"], [type="button"]):active, input:not([type="submit"], [type="button"]):focus {
    outline: none;
    border: 1px solid var(--red);
}
