/* https://www.kevinpowell.co/article/css-remedy/ */
/** { box-sizing: border-box; } !* Switch to border-box for box-sizing. *!*/
/*body {*/
/*    margin: 0; !* Remove the tiny space around the edge of the page *!*/
/*}*/
/*img, video, canvas, audio, iframe, embed, object  {*/
/*    display: block; !* Switch display mode to block, since that's what we usually want for images. *!*/
/*    vertical-align: middle;  !* If you override, and make an image inline, it's likely you'll want middle vertical alignment. *!*/
/*}*/

/* limit maximum page width and center the page when limited. */
body {
    max-width: 1330px;
    /*margin: 0 auto;    */
    margin: 5px;

}


.searchResult {
    width: 300px;
    height: 250px;
    outline: 1px dashed black;
}

.ad {
    resize: both;
    overflow: hidden;
}

.content {
    margin: auto;
    width: 60%;
}

.bigBox {
    margin: auto;
    /*width: 800px;*/
    /*height: 300px;*/
    outline: 1px dashed black;
}


/*.bigBox > div {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/