/* latin */
@font-face {
    font-family: 'Nixie One';
    font-style: normal;
    font-weight: 400;
    src: local('Nixie One'), url("../fonts/NixieOne.otf") format('opentype');
}

html {
    font-size: 16px;
}

body {
    font-family: 'Nixie One';
    width: 100%;
    height: 100%;
}

* { margin:0;
    padding:0;
    box-sizing:border-box;
}

.box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;


    background: #7530b9;
    background: -moz-linear-gradient(45deg, #7530b9 0%, #feee00 100%);
    background: -webkit-linear-gradient(45deg, #7530b9 0%, #feee00 100%);
    background: linear-gradient(45deg, #7530b9 0%, #feee00 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7530b9', endColorstr='#feee00', GradientType=1);


}

.logo svg {
    fill: #f9b217;
    /*animation: roundY 7s cubic-bezier(0, 0, 1, 1) infinite;*/
}

#logo_gb {
    width: 150px;
    height: 150px;
}

@keyframes roundY {
    0% {transform: rotateY(0deg);}
    50% {transform: rotateY(180deg);}
    100% {transform: rotateY(360deg);}
}

.title {
    padding: 15px 0;
    border-bottom: 1px solid #fff;
    color: #f9b217;
    font-size: 3.2em;
}

.subtitle {
    padding: 10px 0;
    color: #ffffff;
    font-size: 2.8em;
}

.box-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.box-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 1em;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    background: rgba(39, 39, 39, 0.42);
}

.box-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    font-size: 1em;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
}

@media only screen and (max-width: 1200px) {
    .title {
        font-size: 3.2em;
    }

    .subtitle {
        font-size: 2.8em;
    }
}

@media only screen and (max-width: 992px) {
    .title {
        font-size: 2.8em;
    }

    .subtitle {
        font-size: 2.4em;
    }
}

@media only screen and (max-width: 768px) {
    .title {
        font-size: 2.2em;
    }

    .subtitle {
        font-size: 1.6em;
    }
}

@media only screen and (max-width: 425px) {
    .title {
        font-size: 1.6em;
    }

    .subtitle {
        font-size: 1.2em;
    }
}