:root {
    --orange: #F69212;
    --blue: #1E66F5;
    --gray: #6E6E6E;
    --green: #008000;
    --slate: #394384;

    --letter-spacing-p: -0.045em;
    --letter-spacing-h: -0.01em;

    --text-indent: 1.25em;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}
body {
    font-size: 1rem;
    font-family: 'Source Code Pro', monospace;
    -moz-font-feature-settings: 'kern';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    direction: ltr;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
}
p, h1, h2, h3, h4, h5, h6 {
    margin: 0; 
}
a {
    -webkit-appearance: none;
    font-family: inherit;
    font-size: 1em;
    vertical-align: middle;
    color: var(--blue);
    text-decoration: underline;
}
button,
input {
    -webkit-appearance: none;
            appearance: none;
    border: 0;
    background-color: transparent;
    color: inherit;
    font-family: inherit;
    font-size: 1em;
    vertical-align: middle;
}
img {
    user-select: none;
    margin: 0;
    padding: 0;
}

noscript {
    background-color: var(--slate);
    color: #ffffff;
    padding: 6px 3px;
}
header {
    width: 100%;
    line-height: 0;
    padding: 8px 0 0;
}
#header__logolink {
    display: inline-block;
}
#header__logolink__logo {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.textStyle-link {
    color: var(--blue);
    margin-left: var(--text-indent);
    line-height: 3;
}
.textStyle-link a {
    font: inherit;
    border: double 5px;
    padding: 0.5em;
    text-decoration: none;
}

footer {
    padding: 0 0 8px;
    text-align: center;
}
.footer__social__iconlink {
    display: inline-block;
}
.footer__social__iconimg {
    height: 22px;
    width: 22px;
    color: #6E6E6E;
    transition: color .2s ease;
}
.footer__social__iconimg.linkedin:hover {
    color: #0a66c2;
}
.footer__social__iconimg.instagram:hover {
    color: #d6249f;
}
.footer__social__iconimg.youtube:hover {
    color: #FF0000;
}
#footer__copyright {
    font-size: 0.875em;
    color: var(--gray);
    letter-spacing: var(--letter-spacing-h);
    text-transform: uppercase;
}

/*
    HD Display - Landscape - DPR Fix
*/
@media only screen and (min-height: 720px) and (max-width: 1920px) and (min-resolution: 1.25dppx) and (max-resolution: 2dppx) and (orientation: landscape) {
    #header__logolink__logo {
        width: 5rem;
    }
}

/*
    MOBILE - LANDSCAPE
*/
@media only screen and (max-width: 1200px) and (max-height: 520px) and (orientation: landscape) {
    header {
        text-align: right;
        padding-right: 8px;
    }
    #header__logolink__logo {
        width: 60px;
    }
    .footer__social__iconimg {
        height: 22px;
        width: 22px;
    }
    #footer__copyright {
        font-size: 0.375em;
        padding-bottom: 0;
    }
}

/*
    MOBILE - PORTRAIT LONG
*/
@media only screen and (max-width: 600px) and (orientation: portrait) {
    #header__logolink__logo {
        width: 64px;
    }
    footer {
        flex-grow: 0;
        flex-shrink: 0;
        position: static;
        padding-top: 24px;
        background-image: none;
    }
    .footer__social__iconimg {
        height: 24px;
        width: 24px;
    }
    #footer__copyright {
        font-size: 0.625em;
    }
}

/*
    MOBILE - PORTRAIT REGULAR
*/
@media only screen and (max-width: 420px) and (max-height: 700px) and (orientation: portrait) {
    footer {
        padding-top: 16px;
    }
    .footer__social__iconimg {
        height: 20px;
        width: 20px;
    }
}
