:root {
    --white-color: #FFF;
    --dark-color: #252525;
    --literdark-color: #454545;
    --lite-color: #D8D7D9;
    --green-color: #05704e;
    --litergreen-color: #0baf7b;
    --red-color: #DA1F32;
    --literred-color: #ff4d4d;
    --yellow-color: #f5ce12;
    --literyellow-color: #fbe056;
    --orange-color: #ff9f1a;
    --literorange-color: #ffaf40;
    --blue-color: #17c0eb;
    --literblue-color: #18dcff;
    --background-color: #252525;
    --font-color: #fff;
    --font-inversecolor: #3d3d3d;
    --shadow-black: rgba(0, 0, 0, 0.3);
}

body, 
html {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    color: var(--font-color);
    overflow-x: hidden;
}

h1 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
}

h2 {
    color: var(--font-color) !important;
    margin-top: 0;
    line-height: .75;
}

h1.soon {
    position: relative;
    color: var(--literyellow-color) !important;
    margin-bottom: 0;
    line-height: 1.35;
    /* text-shadow: 0 35px 25px rgba(0, 0, 0, 0.2); */
    z-index: 2;
}

h1.soon::before {
    content: attr(data-text);
    position: absolute;
    top: -5%;
    left: 50%;
    font-size: 1.1em;
    color: transparent;
    width: 115%;
    transform: translateX(-50%);
    text-shadow: 0 35px 25px rgba(0, 0, 0, 0.25);
    z-index: -1;
}

a:hover {
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.img--bgd {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .3;
}

.img--bgd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.full--h {
    min-height: 100vh;
}

.gradient--bgd {
    background: -webkit-radial-gradient(100% 100% at 100% 0%, var(--literdark-color) 0%, var(--dark-color) 100%) no-repeat 50% 50% / 100% 100%;
    background: radial-gradient(100% 100% at 100% 0%, var(--literdark-color) 0%, var(--dark-color) 100%) no-repeat 50% 50% / 100% 100%;
}

img.img--animated {
    position: relative;
    top: 0px;
    width: 300px;
    animation: floating 1s ease-in-out infinite alternate;
    will-change: top;
}

@keyframes floating {
    0%   { top: 0px; }
    100% { top: 10px; }
}

.img--shadow {
    display: block;
    width: 250px;
    height: 25px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    filter: blur(7px);
    margin-top: 15px;
    opacity: .6;
    animation: shrink 1s ease-in-out infinite alternate;
    will-change: width;
}

@keyframes shrink {
    0%   { width: 250px; opacity: .6; }
    100% { width: 270px; opacity: .7; }
}

a.icon--link {
    position: relative;
    top: 0;
    margin-right: 25px;
    color: var(--literyellow-color);
    transition: color .3s ease-in-out, top .2s ease;
    will-change: top;
}

a.icon--link:hover {
    top: -4px;
}

a.icon--link:last-child {
    margin-right: 0;
}

[class^="icofont-"] {
    font-size: 2rem;
}