@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
html {
    height: 100% !important;/* Keyword "important" fixes the height on closing the Zoho popup */
}

/*///////////////////////////*/
body {
    background: #030526 url("img/star_ptrn.png");
    color: #EEEEEE;
    font-family: 'Righteous', cursive;
    min-height: 100%;
    height: 100% !important;/* Keyword "important" fixes the height on closing the Zoho popup */
    position: relative;
    margin: 0;
    padding: 0;
}

p {
    color: #C9CBF1;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    line-height: 160%;
}

h1 {
    color: #EEEEEE;
    font-size: 38px;
    margin: 0;

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

button {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: none;
    border: 1px solid #353D66;
    border-radius: 8px;
    color: #EEEEEE;
    font-family: 'Righteous', cursive;
    padding: 8px 18px 8px 12px;
    font-size: 16px;
}

button img {
    width: 24px;
    height: 24px;
    margin-right: 4px;
}

button:hover {
    background: #353D66;
}


/*/////////////////////*/

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 58px;
    padding-top: 24px;
    margin-right: 12px;
    margin-left: 12px;
}

section {
    position: relative;
    text-align: center;
    min-height: calc(100% - 82px);
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo {
    width: 72px;
    height: 58px;
}
.content {
    margin: auto 0 ;
}
.title_content {
    margin-top: 68px;
}
.title_content .img_title {
    width: 316px;
    height: 46px;
}
.desc {
    margin-top: 32px;
    margin-bottom: 32px;
    margin-left: 12px;
    margin-right: 12px;
}
.app_button_container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 48px;
}

.app_button_container a {
    display: block;
    width: 162px;
    height: 52px;
    margin: 0 12px;
}

.app_store {
    background: url("img/app_store_default.png");
    background-size: 100% 100%;
}

.app_store:hover {
    background: url("img/app_store_hover.png");
    background-size: 100% 100%;
}

.google_play {
    background: url("img/google_play_default.png");
    background-size: 100% 100%;
}

.google_play:hover {
    background: url("img/google_play_hover.png");
    background-size: 100% 100%;
}
.planet_box {

    overflow: hidden;
}
.planet {
    width: 100%;
    animation: rotate 600s infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(1440deg);
    }
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #080D25;
    padding: 6px 0;
    opacity: 0.95;
}

footer p,
footer a {
    font-family: 'Ubuntu', sans-serif;
    margin: 8px;
    color: #555885;
    font-size: 14px;
}

/*region Zoho*/
#feedbacklabel {
    display: none !important;
}
/*endregion*/


/*///////////////////////////////////////*/

@media (min-width: 768px) {
    section {
        background: url("img/items.png")no-repeat;
        background-size: contain;
        background-position: center center;
    }
    h1 {
        font-size: 64px;
    }
    .title_content {
        margin-top: 32px;
    }
    .title_content .img_title {
        width: 506px;
        height: 78px;
    }
    .desc {
        width: 556px;
        margin-right: auto;
        margin-left: auto;
        /*margin: 0 auto;*/
    }
    p {
        font-size: 18px;
    }
    .app_button_container a {
        width: 196px;
        height: 64px;
    }

    .planet_box {
        max-height: 340px;
    }
    .planet {
        width: 60%;
    }

    footer {
        flex-direction: row;
        justify-content: space-around;
    }
}


@media (min-width: 1280px) {
    header {
        width: 1160px;
        margin-left:auto;
        margin-right: auto;
    }
}

@media (min-width: 1900px) {
    .planet_box {
        max-height: 700px;
    }
    .planet {
        width: 50%;
    }

}