/* =============================================================================
   HTML5 CSS Reset Minified - Eric Meyer
   ========================================================================== */

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

body {
    line-height: 1
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

nav ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none
}

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold
}

del {
    text-decoration: line-through
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}

input,
select {
    vertical-align: middle
}

li {
    list-style: none
}


/* =============================================================================
   My CSS
   ========================================================================== */


/* ---- base ---- */

html,
body {
    width: 100%;
    height: 100%;
    /* background: rgb(0,51,102);
  background: radial-gradient(circle, rgba(0,51,102,1) 0%, rgba(0,0,0,1) 100%); */
    background: #eaeaea;
    background: radial-gradient(circle, #fff 0%, #00AECA 100%);
    font-family: 'Open Sans', sans-serif;
}

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
    max-width: 100%;
    height: auto;
}

canvas {
    display: block;
}

#particles-js {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
}

#container {
    display: block;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#content {
    display: block;
    height: auto;
    width: 80vw;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

#content h1 {
    color: #fff;
    cursor: pointer;
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 52px;
    opacity: .25;
    width: 100%;
    position: relative;
    left: 0;
    top: 30px;
}

#content h2 {
    color: #fff;
    cursor: pointer;
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: 16px;
}

#content h3 {
    color: #fff;
    cursor: pointer;
    display: block;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    font-size: 16px;
    text-transform: uppercase;
}

#content img {
    display: block;
    width: 480px;
    max-width: 100%;
    margin: 64px 0;
}

#content #social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#content #social a {
    font-family: 'Open Sans', sans-serif;
    display: block;
    height: 105px;
    text-align: center;
    width: 25%;
    transition: all .3s;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#content #social a img {
    width: 90px;
    transition: all .1s;
}

#social a img:hover {
    animation: enlace .5s;
}

@keyframes enlace {
    0% {
        width: 90px;
    }
    50% {
        width: 80px;
    }
    100% {
        width: 100px;
    }
}

.fade-in {
    animation: fadeIn ease 3s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        width: 100px;
    }
    100% {
        opacity: 1;
        width: 480px;
    }
}