﻿#homecontent {
/*    background-position: left top; */
    background-repeat: no-repeat;
    background-image: url('homepage.png');
    background-size: cover;
    height: 560px;
}


#title-section {
    display: block;
    position: absolute;
    width: 350px;
    bottom: 10px;
    right: 200px
}

    #title-section h2 {
        font-size: 1.5rem;
        font-weight: bold;
        text-align: center;
        color: black;
        margin: 0;
    }

    #title-section h3 {
        font-weight: bold;
        text-align: center;
        color: #808080;
        margin: 0;
    }

.clickshopbutton {
    top: 440px;
    left: 75px;
}
#montageimages {
    margin-top: 30px;
}

/* Responsive */

@media screen and (max-width: 900px) {
    #title-section {
        right: 125px
    }
    #title-section h2 {
        font-size: 1.125rem;
    }
    #title-section h3 {
        font-size: .75rem;
    }
}

@media screen and (max-width: 768px) {
    #title-section {
        display: none;
    }
    #montageimages {
        display: none;
    }
    #homecontent {
        background-size: cover;
    }
}

@media screen and (max-width: 600px) {
    #homecontent {
        background-image: url('homepage-mobile.png');
        background-size: cover;
        height: 600px;
    }
}

@media screen and (max-width: 400px) {
    #homecontent {
        background-image: url('homepage-mobile.png');
        background-size: 100% auto;
    }

    .clickshopbutton {
        top: 30px;
        left: -40px;
    }
}





