﻿#homecontent {
    position: relative;
    margin: 0;
    padding: 0;
    background-position: left top;
    background-repeat: no-repeat;
    background-image: url('homepage.png');
    background-size: cover;
    height: 560px;
}

#theme-title {
    display: none;
}

#theme-section {
    display: none;
}

.clickshopbutton {
    top: 260px;
    left: 75px;
}

#montageimages {
    margin-top: 30px;
}


/* Responsive */

@media screen and (max-width: 800px) {
    #montageimages {
        display: none;
    }
    #homecontent {
        background-size: contain;
        height: 440px;
    }
}


@media screen and (max-width: 600px) {
    #homecontent {
        background-image: url('homepage-mobile.png');
        background-size: cover;
        height: 500px;
    }
    .clickshopbutton {
        top: 200px;
        left: -20px;
    }
}


@media screen and (max-width: 500px) {
    #homecontent {
        background-size: 100% auto;
    }
}





