@font-face {
    font-family: 'Athos';

    src: url('../fonts/athos.woff');
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;

    font-family: 'Athos', monospace;
    font-size: 16px;
}

body {
    overflow: hidden;

    background-image: url('../img/bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media (max-width:576px) {
    body {
        font-size: 14px;
    }
}


.container {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;
}


.logo {
    position: relative;

    max-width: 75%;
}

img {
    width: 100%;
    height: auto;
}

.marquee {
    position: absolute;
    bottom: 30%;

    width: 100vw;
}



.marquee span {
    display: inline-block;

    width: 100%;

    animation: desplazarTexto 40s linear infinite;
    text-align: justify;
}

.marquee span:after {
    display: inline-block;

    width: 100%;

    content: '';
}

@media (max-width:576px) {
    .marquee {
        position: fixed;
        top: 40px;
    }
    .marquee span {
        width: 120%;

        animation: desplazarTexto 20s linear infinite;
        text-align: left;
    }
}




.claim {
    position: fixed;
    bottom: 40px;

    width: 100%;

    text-align: center;
}


@keyframes desplazarTexto {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
