body{
    background: #763626; /* #000; */
}

#background {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right; 
    position: fixed;  
    background-image: url(back.jpg);
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#logo {
    width: 30%;
    height: auto;
    position: fixed;
    /* bottom: 20px; */
    top: 5%;	
    right: 20px;
}

@media (max-width: 575.98px) {
    #background {
        background-size: 180%; 
        background-repeat: no-repeat;
        background-position-y: center; 
        background-position-x: 65% !important; /* 10% */
	background-image: linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(153,0,0,1) 75%, rgba(153,0,0,1) 100%), linear-gradient(180deg, rgba(153,0,0,1) 0%, rgba(153,0,0,1) 25%, rgba(255,255,255,0) 40%), url(back.jpg);


    }
    #logo {
    	position: fixed;
        bottom: auto;
        right: auto;
        top: 15%;
	left: 50%;
        width: 60%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 767.98px) {
    #background {
        background-size: cover;
        background-position: right; 
        position: fixed;  
    }
    #logo {
    	position: fixed;
        bottom: auto;
        right: auto;
        /* top: 70%; */
        top: 10%;
	left: 50%;
        width: 60%;
        transform: translate(-50%, -50%);
    }
}

