@keyframes ring-inscription {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(365deg);
    }
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    font-weight: normal;
    text-decoration: none;
    line-height: 1.4;
    cursor: url(../assets/images/sword_cursor.png), auto;
}

html  {
    font-size: 14px;
}

html,
body {
    height: 100%;
}

body {
    background-color: #000;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.4em;
    font-family: 'Trade Winds';
}

h1 {
    font-size: 1.8rem;
}

h2 {
    font-size: 1.4rem;
}

p {
    margin: 0 0 1em;
}

p:last-child  {
    margin-bottom: 0;
}

b,
strong {
    font-weight: 700;
}

.wrapper {
    height: 100%;
}

.video-stage {
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.video-stage__ring,
.video-stage__pattern,
.video-stage__mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.video-stage__ring {
    left: 50%;
    top: 50%;
    width: 100vmax;
    height: 100vmax;
    z-index: 1;
    background-image: url(../assets/images/ring-inscription.png);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.2;
    animation: ring-inscription 60s linear infinite;
    filter: blur(2px);
}

.video-stage__pattern {
    z-index: 2;
    background-image: url(../assets/images/pattern-px.png);
    opacity: 0.4;
}

.video-stage__mask {
    z-index: 2;
    background-image: radial-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 95%)
}

.video-stage__video {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    min-width: 100%;
    min-height: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 1s linear;
}

.video-stage__video--init {
    opacity: 1;
}

.content {
    max-width: 800px;
    padding: 2rem 5vh 8rem;
    margin: 0 auto;
}

.content__body {
    padding: 2rem 0 0;
    text-align: center;
    background-image: radial-gradient(closest-side, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.logo__img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.contact-info {
    padding: 1em 0 0;
    background-image: radial-gradient(closest-side, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

.contact-info__list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 0 0 -0.5em;
    list-style-type: none;
}

.contact-info__list-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.4em;
    margin: 0 0.5em 0.5em 0;
    border: 1px solid transparent;
    transition: all 0.2s linear;
}

.contact-info__list-item:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-info__list-item:last-child {
    margin-right: 0;
}

.contact-info__list-item a {
    display: flex;
    align-items: center;
    color: #fff;
}

.contact-info__list-item img {
    display: block;
    max-width: 3em;
    margin: 0 0.6em 0 0;
}

.disclaimer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1em 1rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6) 10%);
}

.disclaimer__text {
    font-size: 0.8em;
    text-align: center;
}

.disclaimer__text small {
    font-size: 1em;
}

@media only screen and (min-width: 800px) {
    html  {
        font-size: 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .contact-info__list-item img {
        max-width: 3em;
    }
}

@media only screen and (min-width: 1200px) {
    html  {
        font-size: 16px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .contact-info__list-item img {
        max-width: 4em;
    }
}
