/* import img format definitions */
@import url(margin_controls.css);

@font-face {
    font-family: GlacialIndifference;
    src: url(../theme/fonts/glacial-indifference/GlacialIndifference-Regular.otf);
}

html {
    text-shadow: none;
    line-height: 2rem;
    /* prevent selection */
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    margin: 10px;
    padding: 10px;
    font-family: GlacialIndifference;
    font-size: 22px;
    background-color: white;
}

body.cv {
    margin: 10px;
    padding: 10px;
    font-family: GlacialIndifference;
    font-size: 16px;
    background-color: white;
}

header {
    width: 90%;
    margin: auto;
    background-blend-mode: lighten;
    background-size: contain;
    text-align: right;
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-shadow: #333 1px 0 3px;
}

header.cv {
    width: 90%;
    margin: auto;
    background-blend-mode: lighten;
    background-size: contain;
    text-align: left;
    color: black;
    padding: 10px;
    border-radius: 10px;
    text-shadow: #333 0 0 3px;
}

footer {
    /* background-color: #f2f2f2; */
    color: #333;
    text-align: center;
    padding: 10px;
    width: 90%;
    margin: auto;
}

blockquote::before {
    content: "“";
}

blockquote::after {
    content: "”";
}

a {
    color: rgb(233, 29, 26) !important;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

a:hover {
    text-shadow: 1px 1px 3px #120117;
}

/* author info has shadows */
author {
    color: black;
    width: 90%;
    text-align: left;
    font-weight: bold;
    display: block;
    margin: auto;
    text-shadow: #333 0px 0 3px;
}

/* section separator */
chapter {
    color: black;
    width: 90%;
    text-align: left;
    font-weight: bold;
    display: block;
    margin: auto;
}

/* line height adjustment */
.small-line-height {
    line-height: 0.95;
    margin-top: 0;
    margin-bottom: 20px;
}

/* blocks in the main content */
article {
    color: black;
    /* text-shadow: #333 1px 0 3px; */
    margin-bottom: 20px;
    text-align: justify;
}

p,
h1,
h2,
h3 {
    margin-bottom: 0;
}

ul,
ol,
footer {
    margin-top: 0;
    margin-bottom: 10px;
}

/* section and article caption */
.caption {
    color: black;
    text-shadow: #333 1px 0 3px;
    text-transform: uppercase;
}

/* both over and under line decoration */
.over-under {
    text-decoration: overline underline 3px;
    /* add extra gap between the line and the text */
    text-underline-offset: 5px;
    /* do not break the line */
    text-decoration-skip-ink: none;
}

.under-wavy {
    text-decoration: underline wavy 2px;
    /* add extra gap between the line and the text */
    text-underline-offset: 5px;
    /* do not break the line */
    text-decoration-skip-ink: none;
}

/* main content includes left and right columns */
main,
.main {
    color: black;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.three-column {
    width: 29%;
    /* background-color: #f2f2f2; */
    padding: 10px;
    margin-right: 10px;
    text-align: center;
}

.left-column {
    width: 15%;
    /* background-color: #f2f2f2; */
    padding: 5px;
    margin-right: 5px;
    text-align: center;
}

.right-column {
    width: 75%;
    /* background-color: #e6e6e6; */
    padding: 10px;
}

.centre {
    justify-content: center;
}

.uppercase {
    text-transform: uppercase;
}

.thick {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}

.tiny {
    font-size: 0.8em;
}

.large {
    font-size: 1.5em;
    line-height: 1.5em;
}

.bold-a {
    font-weight: bolder;
    text-shadow: #333 0 0 1px;
}

.italic-a {
    font-style: italic;
    text-shadow: #333 0 0 1px;
}

.blue {
    color: dodgerblue;
}

table {
    margin: 0 auto;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: magenta;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
}

#myBtn:hover {
    background-color: #555;
}