* { margin: 0; padding: 0; }

html {
    background:              url(images/grasmere.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size:    cover;
    -o-background-size:      cover;
    background-size:         cover;
}

body { overflow-x: hidden; }

a { color: #4682B4; text-decoration: underline; }

a:hover { color: #808080; text-decoration: none; }

h1 {
    font:       2em/1.6em Verdana, Geneva, Arial, Helvetica, sans-serif;
    text-align: center;
}

#page-wrap {
    background:         white;
    -moz-box-shadow:    0 0 20px #000000;
    -webkit-box-shadow: 0 0 20px #000000;
    box-shadow:         0 0 20px #000000;
}

p {
    font:       15px/2em Verdana, Geneva, Arial, Helvetica, sans-serif;
    margin:     0 0 30px 0;
    text-align: center;
}

/* ##################################
   ### Bootstrap v4 Media Queries ###
   ################################## */

/*
XS = Extra small < 576px
SM = Small  - 576px to 767px
MD = Medium - 768px to 991px
LG = Large  - 992px to 1199px
XL = Extra large ≥ 1200px
*/

/* XS - Extra small devices (portrait smartphones, less than 576px)
   No media query since this is the default in Bootstrap v4
   We jut put CSS items here to remind us that there may be a larger screen variant */

#page-wrap {
    width:   80%;
    margin:  50px auto;
    padding: 20px;
}


/* SM - Small devices (landscape smartphones, 576px and up) */
@media (min-width: 576px) {


}

/* MD - Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/*  LG - Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

    #page-wrap {
        width:   60%;
        margin:  50px auto;
        padding: 20px;
    }

}

/*  XL - Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

    #page-wrap {
        width:   50%;
        margin:  50px auto;
        padding: 20px;
    }

}