﻿body
{
    font-family: 'Raleway', sans-serif;
    font-family: 'Roboto', sans-serif;
}

.cover
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.57);
}

.full_image
{
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.scroll-down
{
    animation: MoveUpDown 2s linear infinite;
    width: 25px;
    height: 35px;
    position: absolute;
    bottom: 20px;
    left: calc(50% - 12.5px);
}


@media (max-width : 1100px)
{
}

@keyframes MoveUpDown
{
    0%, 100%
    {
        bottom: 20px;
    }

    50%
    {
        bottom: 22px;
    }
}
