/* variables */

:root {
    --primary-color: #007eaf;
    --primary-color-rgb: 0, 126, 175;
    --secondary-color: #55ade1;
    --secondary-color-rgb: 85, 173, 225;
    --dark-color: #00527f;
    --dark-color-rgb: 0, 82, 127;
    --font-color: #303030;
    --font-color-light: white;
}

html {
    line-height: 1.6;
    box-sizing: border-box;
    font-size: 10px;
    font-family: sans-serif;
    font-family: 'Open Sans', sans-serif;
    overflow-y: scroll;
    min-height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
 
*, *:before, *:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
    font-weight: 400;
}
 
body { 
    height: 100%; 
    color: #303030;
    font-size: 1.7rem;
}
 
 
img,
embed,
iframe,
object,
audio,
video {
    height: auto;
    max-width: 100%;
    border: 0;
    vertical-align: bottom;
}
 
table {
    margin: 0 auto;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
 
th, td { padding: 0.2rem; }
 
pre {
    font-family: monospace;
    padding: 1rem;
    margin: 2rem;
    background-color: #EEEEEE;
    color: #000000;
    font-size: 2rem;
}
 
/* supsign footer heart */
span.footer__heart {
    color: #E25555;
    font-size: 1.4rem;
}

