html,body{
    padding: 0;
    margin: 0;
    height: 100%;
    /*
    background: rgb(232,216,174);
    background: -moz-linear-gradient(320deg, rgba(232,216,174,1) 0%, rgba(248,255,254,1) 100%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(320deg, rgba(232,216,174,1) 0%, rgba(248,255,254,1) 100%, rgba(0,0,0,1) 100%);
    background: linear-gradient(320deg, rgba(232,216,174,1) 0%, rgba(248,255,254,1) 100%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e8d8ae",endColorstr="#000000",GradientType=1);
    */
}

.creativeLink {
    cursor:pointer;
}

.creative .linkCaptionInfo {
    font-size: 0.9em;
}
.creative .creativeArrow .linkCaptionInfo {
    font-size: 1.2em;
    padding-top: 1em;
}
.creative .creativeArrow {
    text-align: center;
    padding: 40px;
}
.creative .bhGreenArrRight {
    max-width: 100%;
    width: 400px;
}

@media (max-width: 499px){
    .creative {
        background: white;
        width: 95%;
        border: 0px solid red;
        margin: 20px auto;
        white-space: normal;
        box-shadow: 0px 0px 10px #c0c0c0;
        border-radius: 10px;
        cursor: pointer;
    }
    .imgBox{
        width: 100%;
        border: 0px solid blue;
        padding: 0px;
        margin: 0px;
        display: inline-block;
        text-align: center;
    }
    .imgBox img{
        width: 90%;
        height: auto;
        margin: 10px auto;
        display: inline-block;
    }
    .textBox{
        display: block;
        width: 90%;
        border: 0px solid blue;
        padding: 5px 5%;
        margin: 0px;
        vertical-align: top;
        text-align: center;
    }
    .textContainer{
        font-family: Arial;
        color: blue;
        font-size: 24px;
        transition: all 0.3s ease;
    }
    .creative:hover .textContainer{
        color: red;
    }
    .arrowBox{
        color: blue;
        font-size: 48px;
        text-align: center;
        margin: 0px auto;
        transition: all 0.3s ease;
    }
    .creative:hover .arrowBox{
        color: red;
    }
}

@media (min-width: 500px){
    .creative {
        background: white;
        width: 80%;
        max-width: 600px;
        border: 0px solid red;
        margin: 20px auto;
        white-space: normal;
        box-shadow: 0px 0px 10px #c0c0c0;
        border-radius: 10px;
        cursor: pointer;
    }
    .imgBox{
        width: 40%;
        border: 0px solid blue;
        padding: 0px;
        margin: 0px;
        display: inline-block;
        text-align: center;
    }
    .imgBox img{
        width: 100%;
        height: auto;
        margin: 10px;
        display: inline-block;
    }
    .textBox{
        display: inline-block;
        width: calc(55% - 30px);
        border: 0px solid blue;
        padding: 15px;
        margin: 0px;
        vertical-align: top;
        text-align: center;
    }
    .textContainer{
        font-family: Arial;
        color: blue;
        font-size: 24px;
        transition: all 0.3s ease;
    }
    .creative:hover .textContainer{
        color: red;
    }
    .arrowBox{
        color: blue;
        font-size: 48px;
        text-align: center;
        margin: 0px auto;
        transition: all 0.3s ease;
    }
    .creative:hover .arrowBox{
        color: red;
    }
}
