@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300");

:root {
    --a-blue: #0052cc;
    --a-blue-light: #0052cc99;
  }

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    background-image: url(../images/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: #414f57;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: #313f47;
    line-height: 1.5;
}

h1 {
    font-size: 1.85em;
    letter-spacing: 0.22em;
}

    @media screen and (max-width: 480px) {

        h1 {
            font-size: 1.65em;
        }

    }

body, input, select, textarea {
    color: #414f57;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-size: 14pt;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.2em;
}

    @media screen and (max-width: 1680px) {

        body, input, select, textarea {
            font-size: 11pt;
        }

    }

    @media screen and (max-width: 480px) {

        body, input, select, textarea {
            font-size: 10pt;
            line-height: 1.75;
        }

    }

a {
    transition: color 0.2s ease, border-color 0.2s ease;
    color: inherit !important;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--a-blue) !important;
}

.main-card {
    transform-origin: 50% 50%;
    animation: 1.5s ease 0s 1 CardRotateInTransition;
    background: white;
    max-width: 100%;
    opacity: 0.95;
    min-width: 25em;
    max-width: 35em;
    padding: 3.5em 3em 3em 3em;
}

@keyframes CardRotateInTransition {
    0% {
      transform: rotateX(15deg);
      opacity: 0;
    }
    100% {
      transform: rotateX(0deg);
      opacity: 0.95;
    }
}

.avatar {
    position: relative;
    display: block;
    margin-bottom: 1.5em;
}

.avatar:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: -3em;
    width: calc(100% + 6em);
    height: 1px;
    z-index: -1;
    background: #c8cccf;
}

.avatar-img {
    border-radius: 100%;
    box-shadow: 0 0 0 1.5em #ffffff;
    width: 260px;
    height: 260px;
    object-fit: cover;
}

.copyright {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.75);
}

ul.icons {
    display: block;
    cursor: default;
    list-style: none;
    padding-left: 0;
    margin-top: -0.675em;
    text-align: center;
}

ul.icons li {
    display: inline-block;
    padding: 0.675em 0.5em;
}

ul.icons li a {
    position: relative;
    width: 3.75em;
    height: 3.75em;
    border-radius: 100%;
    border: solid 1px #c8cccf;
    line-height: 3.75em;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    transition: 0.3s;
}

ul.icons li a:hover {
    color: var(--a-blue);
    border: solid 1px var(--a-blue-light);
}

ul.icons li a i {
    font-size: 1.85rem;
    width: 2.8em;
    height: 2.8em;
    color: #c8cccf;
    padding-left: 3px;
    transition: 0.3s;
}

ul.icons li a i:hover {
    color: var(--a-blue-light);
}