/* Fonts for Website */
@font-face {
    font-family: 'Gilroy-Regular';
    src: url("../fonts/fonts-Gilroy-Regular.otf") format("truetype");
}

@font-face {
    font-family: 'Gilroy-ExtraBold';
    src: url("../fonts/fonts-Gilroy-ExtraBold.otf") format("truetype");
}

@font-face {
    font-family: 'Gilroy-ExtraBold';
    src: url("../fonts/fonts-Gilroy-ExtraBold.otf") format("truetype");
}

@font-face {
    font-family: 'mcfont';
    src: url("../fonts/MinecraftTen-VGORe.ttf") format("truetype");
}

/* Colors of Website */
:root {
    --dark: #191a23;
    --dark2: #15161e;
    --darkness: #11121a;
    --white: #fff;
    --light: #dde1f2;
    --blue: #566ee7;
    --dark-blue: #4058d0;
    --gren: #3BB85D;
    --main-color: #C22525;
}

body {
    font-family: 'Gilroy-Regular', sans-serif;
    background: var(--dark);
    color: var(--light);
}

/* Custom Stuffs */
.custom-bg {
    background: linear-gradient(rgba(26, 27, 35, .6),rgba(26, 27, 35, .6)) , url('../images/images-custom-bg.png') top/cover no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.text-blue {
    color: var(--main-color) !important;
}

.font-bold {
    font-family: 'Gilroy-ExtraBold';
}

img {
    pointer-events: none;
}

.btn {
    transition: all .4s ease 0s;
}

.container-pixo {
    width: 91%; /* Giới hạn chiều rộng nội dung */
    margin: 0 auto; /* Căn giữa */
}

.btn-custom {
    border-radius: 50px;
    background: var(--main-color);
    border: 4px solid var(--main-color);
    color: var(--white);
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'Gilroy-ExtraBold';
    padding: 6px 20px;
}

.btn-custom:hover,
.btn-custom:active,
.btn-custom:focus {
    background: var(--main-color);
    color: var(--white);
}

/* Toolbar */
.toolbar {
    background: var(--main-color);
}

.toolbar .toolbar-left .minecraft-server-title,
.toolbar .toolbar-right .discord-server-title {
    font-family: 'Gilroy-ExtraBold';
    color: var(--white);
    font-size: 16px;
    margin-bottom: 0;
    position: relative;
    letter-spacing: -.02rem;
    text-transform: uppercase;
    top: 4px;
}

.toolbar .toolbar-left .minecraft-server-players,
.toolbar .toolbar-right .discord-server-players {
    color: var(--white);
    font-size: 14px;
    position: relative;
    top: 0px;
    text-align: center !important;
    display: block;
}

.dot-online {
    display: inline-block;
    position: relative;
    top: -6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gren);
    cursor: pointer;
    box-shadow: 0 0 0 rgba(59, 184, 93, .4);
    animation: pulse 2s infinite;
}

.dot-online:hover {
    animation: none;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(59, 184, 93, .4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(59, 184, 93, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(59, 184, 93, 0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(59, 184, 93, .4);
        box-shadow: 0 0 0 0 rgba(59, 184, 93, .4);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(59, 184, 93, 0);
        box-shadow: 0 0 0 10px rgba(59, 184, 93, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
}

.toolbar img {
    width: 34px;
}

.toolbar i {
    color: var(--white);
    font-size: 34px;
    position: relative;
    top: 4px;
}

@media (max-width:768px) {
    .toolbar-left,
    .toolbar-right {
        margin: 0 auto;
    }
}

/* Navbar */
.fixed-top {
      top: -40px;
      transform: translateY(40px);
      background: rgba(17, 18, 26, .4) !important;
      transition: transform .4s;
}

.navbar-dark {
    background: var(--darkness);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .8rem;
    padding-left: .8rem;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: 'Gilroy-ExtraBold';
    color: var(--light);
    font-size: 16px;
    text-transform: uppercase;
    transition: all .4s ease 0s;
    text-align: center;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:active,
.navbar-dark .navbar-nav .nav-link:focus {
    color: var(--main-color);
}

.navbar-dark .navbar-toggler {
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

.navbar-dark .navbar-toggler:hover,
.navbar-dark .navbar-toggler:active,
.navbar-dark .navbar-toggler:focus {
    color: transparent !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

.navbar-dark .navbar-toggler .icon-bar {
    background: var(--white);
    transform: rotate(0deg) translate(0px, 0px);
    transition: ease all .2s;
}

.navbar-dark .navbar-toggler .icon-bar {
    display: block;
    width: 26px;
    height: 2px;
    border-radius: 1px;
}

.navbar-dark .navbar-toggler .icon-bar+.icon-bar {
    margin-top: 4px;
}

.navbar-dark .icon-bar:nth-child(2) {
    width: 20px;
    transition: ease all .2s;
}

.navbar-dark .navbar-toggler:hover>.icon-bar:nth-child(2) {
    width: 26px;
    transition: ease all .2s;
}

.navbar-dark .navbar-toggler:active>.icon-bar:nth-child(2) {
    width: 26px;
    transition: ease all .2s;
}

.navbar-dark .navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
    transition: ease all .2s;
}

.navbar-dark .navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
    transition: ease all .2s;
}

.navbar-dark .navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    transition: ease all .2s;
}


@media (max-width:768px) {
    .fixed-top {
        background: var(--darkness) !important;
    }

    .navbar-dark .navbar-nav .btn-custom {
        margin: 0 auto;
        display: block;
        text-align: center;
        width: 50%;
    }
}
.navbar-brand img {
    height: 50px; /* Điều chỉnh chiều cao */
    width: auto; /* Giữ tỉ lệ ảnh */
    max-width: 100%; /* Đảm bảo không vượt quá khung */
}
/* Header */
.header {
    background: url('../fonts/images-header.svg');
    height: 612px;
    max-height: 100%;
    background-size: cover;
    background-position: 70% 100%;
    position: relative;
}

.header h1 {
    font-family: 'Gilroy-ExtraBold';
    color: var(--white);
    font-size: 80px;
    text-transform: uppercase;
}

.header h1 span {
    color: var(--main-color);
}

.header p {
  width: 78%;
}

.header .btn-primary {
    border-radius: 50px;
    padding: 8px 32px;
    text-transform: uppercase;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    font-family: 'Gilroy-ExtraBold';
    font-size: 14px;
}

.header .btn-primary:hover,
.header .btn-primary:active,
.header .btn-primary:focus {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(64, 88, 208, .4);
    -moz-box-shadow: 0px 0px 10px 0px rgba(64, 88, 208, .4);
    box-shadow: 0px 0px 10px 0px rgba(64, 88, 208, .4);
}

.header p span {
    font-family: 'Gilroy-ExtraBold';
    color: var(--white);
}

.header-img img {
     -webkit-transform: translatey(0);
    transform: translatey(0);
    -webkit-animation: float 6s ease-in-out infinite;
    animation: float 6s ease-in-out infinite
}

@-webkit-keyframes float {
    0% {
        -webkit-transform: translatey(0);
        transform: translatey(0)
    }
    50% {
        -webkit-transform: translatey(-10px);
        transform: translatey(-10px)
    }
    100% {
        -webkit-transform: translatey(0);
        transform: translatey(0)
    }
}

@keyframes float {
    0% {
        -webkit-transform: translatey(0);
        transform: translatey(0)
    }
    50% {
        -webkit-transform: translatey(-10px);
        transform: translatey(-10px)
    }
    100% {
        -webkit-transform: translatey(0);
        transform: translatey(0)
    }
}

.header-h h1 {
    font-family: 'Gilroy-ExtraBold';
    color: var(--white);
    text-transform: uppercase;
    font-size: 40px;
}

.header-h p {
    text-transform: uppercase;
    letter-spacing: -.02px;
}


@media (max-width: 992px) {
    .header {
        height: auto;
        padding: 100px 0;
    }

    .header-img img {
        display: none;
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 60px;
    }

    .header-text {
        text-align: center;
    }

    .header-text p {
        width: 100%;
    }
}

/* Announcements */
.announcements h1 {
    font-family: 'Gilroy-ExtraBold';
    color: var(--white);
    text-align: center;
}

.announcements {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Tạo khoảng cách giữa các card */
    justify-content: center;
}

/* Card tổng */
.announcements .card {
    background: transparent;
    border: none;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Background và hiệu ứng */
.announcements .card .wrapper {
    position: relative;
    overflow: hidden;
    min-height: 450px; /* Điều chỉnh chiều cao */
    border-radius: 10px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
}

/* Nội dung bên trong */
.announcements .card .data {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
}

.announcements .card .data .content {
    padding: 1em;
    position: relative;
    z-index: 1;
    background: transparent !important;
    text-align: center;
}

/* Tiêu đề */
.announcements .card .title {
    font-family: 'Gilroy-ExtraBold';
    font-size: 24px; /* Giảm size tránh tràn */
    text-align: left; /* Căn giữa */
    width: 90%;
    margin: 0 auto;
    line-height: 1.8;
    word-break: break-word; /* Tự động xuống dòng */
}

.announcements .card .title a {
    text-decoration: none;
    color: var(--white);
}

/* Nội dung văn bản */
.announcements .card .text {
    height: auto;
    max-height: 100px; /* Giới hạn chiều cao */
    width: 90%;
    margin: 0 auto;
    text-align: left;
    font-size: 16px;
    line-height: 1.2;
    overflow: visible; /* Hiển thị đầy đủ nội dung */
    white-space: normal; /* Cho phép xuống dòng tự nhiên */
    display: block; /* Không giới hạn số dòng */
    max-height: none; /* Không giới hạn chiều cao */
}

/* Ẩn Author */
.announcements .card .author {
    display: none;
}

/* Ẩn Read More */
.announcements .card .button {
    display: none;
}

/* Ngày tháng */
.announcements .card .card-top {
    color: #fff;
    padding: 1em;
}

.announcements .card .card-top .date {
    float: left;
    font-size: 12px;
    font-family: 'Gilroy-Regular';
}

.announcements .card .card-top .date i {
    color: var(--main-color);
}

.announcements .card .menu-content {
    float: right;
}
/* Mods */
.mods {
    background: var(--darkness);
    clear: both;
    overflow: hidden;
}

.mods h1 {
    color: var(--white);
    font-family: 'Gilroy-ExtraBold';
}

.factions p {
    float: left;
}

.survival p {
    float: right;
}

.factions p, .survival p {
    width: 86%;
}

@media (max-width: 768px) {
    .mods h1 {
        text-align: center;
    }

    .factions p, .survival p {
        text-align: center;
        width: 100%;
    }

    .mods img {
      margin: 0 auto;
      display: block;
    }
}

/* Why us */
.why-us .media img {
    max-width: 64px;
    max-height: 64px;
    object-fit: contain; /* Đảm bảo ảnh không bị méo */
}

.why-us .media h4 {
    font-family: 'Gilroy-ExtraBold';
    color: var(--white);
    text-transform: uppercase;
    font-size: 20px;
}

.why-us .media p {
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--dark2);
}

.footer h3 {
    font-family: 'Gilroy-ExtraBold';
    color: var(--main-color);
}

.footer ul, .footer .social {
    list-style: none;
    padding: 0;
}

.footer ul li a, .footer .social li a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.4s;
}

.footer .social li {
    display: inline-block;
}

.footer ul li a:hover {
    margin-left: 4px;
}

.footer .social li a {
    padding: 10px;
    font-size: 36px;
}

.footer .social li a:hover,
.footer .social li a:active,
.footer .social li a:focus {
    color: var(--white);
    margin-left: 0;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
}

/* Content */
.content {
    background: var(--darkness);
    border-radius: 10px;
}

.content .bg-dark {
    background: var(--dark2) !important;
    padding: 20px;
    border-radius: 10px;
}

.content .bg-dark h3 {
    font-family: 'Gilroy-ExtraBold';
    font-size: 26px;
    color: var(--main-color);
}

.content .staff-box img {
    width: 140px;
    border-radius: 10px;
    transition: all .2s ease;
}

.content .staff-box h2 {
    font-family: 'Gilroy-ExtraBold';
    font-size: 24px;
    color: var(--main-color);
}

.content .staff-box span {
    text-transform: uppercase;
    letter-spacing: -.02px;
}

.content .staff-box:hover img {
    -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@-webkit-keyframes shake {
    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }
    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

@keyframes shake {
    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }
    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

/* FAQs */
.faq .mb-0 > a {
    display: block;
    position: relative;
    text-decoration: none;
    color: var(--white);
    font-size: 18px;
    font-family: 'Gilroy-ExtraBold';
    padding: 10px 0;
}

.faq .mb-0 > a:after {
    content: "\f067";
    font-family: 'Font Awesome 5 Pro'; 
    position: absolute;
    right: 0;
}

.faq .mb-0 > a[aria-expanded="true"]:after {
    content: "\f068";
    font-family: 'Font Awesome 5 Pro'; 
}

.faq .card {
    background-color: var(--dark2) !important;
    border-color: var(--dark2) !important;
    border-radius: 10px;
    color: both;
    overflow: hidden;
}

.faq .card .card-header {
    color: var(--white);
    background-color: var(--dark);
    
}

.faq .card .card-body {
    color: var(--light);
    font-size: 16px;
}
mcfont {
    font-family: 'mcfont'; /* Ưu tiên dùng MyFont, nếu lỗi thì dùng sans-serif */
    font-size: 36px;
    color: white;
}

mcfont span {
    font-weight: bold;
    color: bray;
}
.server-status p {
    margin: 2px 0; /* Giảm khoảng cách giữa các dòng */
    font-size: 14px; /* Thu nhỏ chữ nếu cần */
    line-height: 1.5; /* Điều chỉnh khoảng cách dòng */
}

.server-status h2 {
    margin-bottom: 5px; /* Giảm khoảng cách dưới tiêu đề */
    font-size: 16px;
}
.pyro > .before, .pyro > .after {
  position: absolute;
  width: 7px;
  height: 7px;
  pointer-events: none;
  z-index: 99999999;
  border-radius: 50%;
  box-shadow: -120px -218.66667px blue, 248px -16.66667px #00ff84, 190px 16.33333px #002bff, -113px -308.66667px #ff009d, -109px -287.66667px #ffb300, -50px -313.66667px #ff006e, 226px -31.66667px #ff4000, 180px -351.66667px #ff00d0, -12px -338.66667px #00f6ff, 220px -388.66667px #99ff00, -69px -27.66667px #ff0400, -111px -339.66667px #6200ff, 155px -237.66667px #00ddff, -152px -380.66667px #00ffd0, -50px -37.66667px #00ffdd, -95px -175.66667px #a6ff00, -88px 10.33333px #0d00ff, 112px -309.66667px #005eff, 69px -415.66667px #ff00a6, 168px -100.66667px #ff004c, -244px 24.33333px #ff6600, 97px -325.66667px #ff0066, -211px -182.66667px #00ffa2, 236px -126.66667px #b700ff, 140px -196.66667px #9000ff, 125px -175.66667px #00bbff, 118px -381.66667px #ff002f, 144px -111.66667px #ffae00, 36px -78.66667px #f600ff, -63px -196.66667px #c800ff, -218px -227.66667px #d4ff00, -134px -377.66667px #ea00ff, -36px -412.66667px #ff00d4, 209px -106.66667px #00fff2, 91px -278.66667px #000dff, -22px -191.66667px #9dff00, 139px -392.66667px #a6ff00, 56px -2.66667px #0099ff, -156px -276.66667px #ea00ff, -163px -233.66667px #00fffb, -238px -346.66667px #00ff73, 62px -363.66667px #0088ff, 244px -170.66667px #0062ff, 224px -142.66667px #b300ff, 141px -208.66667px #9000ff, 211px -285.66667px #ff6600, 181px -128.66667px #1e00ff, 90px -123.66667px #c800ff, 189px 70.33333px #00ffc8, -18px -383.66667px #00ff33, 100px -6.66667px #ff008c;
  -moz-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  -webkit-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  -o-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  -ms-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards; }

.pyro > .after {
  -moz-animation-delay: 1.25s, 1.25s, 1.25s;
  -webkit-animation-delay: 1.25s, 1.25s, 1.25s;
  -o-animation-delay: 1.25s, 1.25s, 1.25s;
  -ms-animation-delay: 1.25s, 1.25s, 1.25s;
  animation-delay: 1.25s, 1.25s, 1.25s;
  -moz-animation-duration: 1.25s, 1.25s, 6.25s;
  -webkit-animation-duration: 1.25s, 1.25s, 6.25s;
  -o-animation-duration: 1.25s, 1.25s, 6.25s;
  -ms-animation-duration: 1.25s, 1.25s, 6.25s;
  animation-duration: 1.25s, 1.25s, 6.25s; }

@-webkit-keyframes bang {
  from {
    box-shadow: 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white; } }
@-moz-keyframes bang {
  from {
    box-shadow: 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white; } }
@-o-keyframes bang {
  from {
    box-shadow: 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white; } }
@-ms-keyframes bang {
  from {
    box-shadow: 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white; } }
@keyframes bang {
  from {
    box-shadow: 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white, 0 0 white; } }
@-webkit-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0; } }
@-moz-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0; } }
@-o-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0; } }
@-ms-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0; } }
@keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0; } }
@-webkit-keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%; }

  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%; }

  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%; }

  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%; }

  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%; } }
@-moz-keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%; }

  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%; }

  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%; }

  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%; }

  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%; } }
@-o-keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%; }

  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%; }

  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%; }

  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%; }

  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%; } }
@-ms-keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%; }

  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%; }

  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%; }

  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%; }

  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%; } }
@keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%; }

  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%; }

  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%; }

  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%; }

  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%; } }
