* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18pt;
}

body {
    line-height: 1.0;
    min-height: 100vh;
    min-width: 320px;
    overflow-x: hidden;
    font-family: 'Arial', sans-serif;
    color: #FFFFFF;
}

body::before {
    content: '';
    display: block;
    background-attachment: scroll;
    height: 100vh;
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 0;
    background-image: linear-gradient(to top, rgba(175,175,201,0.42), rgba(175,175,201,0.42)), url('bg.jpg');
    background-position: 0% 0%, center;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-color: #FFFFFF;
}

#wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding: 1.5625rem;
}

#main {
    align-items: center;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: center;
    max-width: 100%;
    position: relative;
    text-align: center;
    z-index: 1;
    background-color: rgba(34,36,43,0.859);
    border-radius: 2rem;
}

#main > .inner {
    border-radius: 2rem;
    max-width: 100%;
    position: relative;
    width: 24rem;
    z-index: 1;
    padding: 3.125rem 2.5rem;
}

#main > .inner > * {
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
}

#main > .inner > *:first-child {
    margin-top: 0 !important;
}

#main > .inner > *:last-child {
    margin-bottom: 0 !important;
}

.image {
    display: block;
    line-height: 0;
    max-width: 100%;
    position: relative;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.image .frame {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    vertical-align: top;
    width: 7rem;
    border-radius: 100%;
}

.image .frame img {
    border-radius: 0 !important;
    max-width: 100%;
    vertical-align: top;
    width: inherit;
}

h1 {
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.075rem;
    width: 100%;
    font-size: 2.25em;
    line-height: 1.175;
    font-weight: 400;
}

.tagline {
    color: rgba(255,255,255,0.329);
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.025rem;
    width: 100%;
    font-size: 1em;
    line-height: 1.425;
    font-weight: 400;
}

.links {
    color: rgba(255,255,255,0.329);
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.025rem;
    width: 100%;
    font-size: 1em;
    line-height: 1.425;
    font-weight: 400;
}

.links a {
    color: rgba(255,255,255,0.329);
    text-decoration: underline;
    transition: color 0.25s ease;
}

.links a:hover {
    text-decoration: none;
}

.icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    letter-spacing: 0;
    padding: 0;
    list-style: none;
    font-size: 1.25em;
    gap: 1rem;
    margin-top: 1.625rem !important;
    margin-bottom: 1.625rem !important;
}

.icons li {
    position: relative;
    z-index: 1;
}

.icons li a {
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 100%;
    height: 2em;
    width: 2em;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    border: solid 1px #FFFFFF;
}

.icons li a svg {
    display: block;
    position: relative;
    height: 60%;
    width: 60%;
    transition: fill 0.25s ease;
    fill: #000000;
}

.icons li:nth-child(1) a {
    border: solid 1px rgba(119,214,214,0.251);
}

.icons li:nth-child(1) a svg {
    fill: #77D6D6;
}

.icons li:nth-child(1) a:hover {
    border-color: #77D6D6 !important;
}

.icons li:nth-child(1) a:hover svg {
    fill: #77D6D6 !important;
}

.icons li:nth-child(2) a {
    border: solid 1px rgba(87,128,222,0.286);
}

.icons li:nth-child(2) a svg {
    fill: #5780DE;
}

.icons li:nth-child(2) a:hover {
    border-color: #5780DE !important;
}

.icons li:nth-child(2) a:hover svg {
    fill: #5780DE !important;
}

.icons li:nth-child(3) a {
    border: solid 1px rgba(88,162,214,0.251);
}

.icons li:nth-child(3) a svg {
    fill: #58A2D6;
}

.icons li:nth-child(3) a:hover {
    border-color: #58A2D6 !important;
}

.icons li:nth-child(3) a:hover svg {
    fill: #58A2D6 !important;
}

.icons li:nth-child(4) a {
    border: solid 1px rgba(0,163,255,0.251);
}

.icons li:nth-child(4) a svg {
    fill: #00A3FF;
}

.icons li:nth-child(4) a:hover {
    border-color: #00A3FF !important;
}

.icons li:nth-child(4) a:hover svg {
    fill: #00A3FF !important;
}

.icons li:nth-child(5) a {
    border: solid 1px rgba(255,255,255,0.251);
}

.icons li:nth-child(5) a svg {
    fill: #FFFFFF;
}

.icons li:nth-child(5) a:hover {
    border-color: #FFFFFF !important;
}

.icons li:nth-child(5) a:hover svg {
    fill: #FFFFFF !important;
}

@media (max-width: 1680px) {
    html {
        font-size: 13pt;
    }
}

@media (max-width: 1280px) {
    html {
        font-size: 13pt;
    }
}

@media (max-width: 980px) {
    html {
        font-size: 11pt;
    }
}

@media (max-width: 736px) {
    html {
        font-size: 11pt;
    }

    #main > .inner {
        padding: 3.125rem 2rem;
    }

    .image {
        margin-top: 1.125rem !important;
        margin-bottom: 1.125rem !important;
    }

    .image .frame {
        width: 7rem;
    }

    h1 {
        letter-spacing: -0.065625rem;
        font-size: 2.25em;
    }

    .tagline,
    .links {
        letter-spacing: -0.021875rem;
        font-size: 1em;
    }

    .icons {
        font-size: 1.25em;
        gap: 1rem;
        margin-top: 1.21875rem !important;
        margin-bottom: 1.21875rem !important;
    }
}

@media (max-width: 360px) {
    #main > .inner {
        padding: 2.34375rem 1.5rem;
    }

    h1 {
        font-size: 2em;
    }

    .tagline,
    .links {
        font-size: 1em;
    }

    .icons {
        gap: 0.75rem;
    }
}
