/* Global styles for the document */
* {box-sizing: border-box;}
body {background-color: #EAEAEA;
    color: #666666;
    font-family: Arial, Verdana, sans-serif;
    white-space: normal;}
/* Style rule for the wrapper ID */
#wrapper {
    background: linear-gradient(white, pink);
    min-width: 960px;
    max-width: 2048px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin: 25px 50px; 
    padding: 5px;}    
/* Styles for the header element */
header {background-color: white;
    height: 175px;
    color: #FFFFFF; 
    font-family: Georgia, serif;
    padding-bottom: .5em;}
/* Styles for the h1 element */
h1 {font-family: Cursive;
    font-weight: bolder;
    color: white;
    border-color: navy;
    background-color: slateblue;
    text-shadow: 2px 2px deeppink;
    text-align: center;
    font-size: 4em;
    letter-spacing: .1em;
    padding-top:.5em; 
    padding-bottom: .25em;}
/* Styles for the nav element */
nav {font-weight: bold;
    color: white;
    text-shadow: 2px 2px navy;
    background-color: deeppink;
    font-size: 1.25em;
    padding-top: .5em; 
    padding-bottom: .5em;
    text-align: center;}
nav a {text-decoration: none;}
nav a:link {color: white;}
nav a:visited {color: aqua;}
nav a:hover {color: white; }
/* Styles for the main element */
main {background: linear-gradient(white, pink);
    overflow: auto;
    padding-left: 2.5em; 
    padding-right: 2.5em;
    display: block;}
/* Styles for the h2 element */
h2 {color: #1976D2;
    text-shadow: 1px 1px navy;
    font-family: Georgia, serif;
    margin-top: 50px;}
/* Styles for the h3 element */
h3 {color: #1976D2;
    font-family: Georgia, serif;}
#gloss1 {background-image: url(gloss-sample-istock.jpg);
    float: left;
    height: 600px;
    width: 500px;
    background-repeat: no-repeat;}
#scrub1 {background-image: url(scrub-istock.jpg);
    height: 600px; 
    width: 500px;
    float: right;
    background-repeat: no-repeat;}
#scrub2 {background-image: url(lip-scrub.jpg);
    height: 600px; 
    width: 500px;
    float: right;
    background-repeat: no-repeat;}
#rainbow {background-image: url(gloss-rainbow.png);
    height: 600px; 
    width: 500px;
    float: right;
    clear: left;
    background-repeat: no-repeat;}
#rainbow2 {background-image: url(gloss-rainbow.png);
    height: 600px; 
    width: 500px;
    float: right;
    background-repeat: no-repeat;}
footer {background-color: pink;
    clear: left;
    font-size:.70em; 
    font-style: italic;
    padding:1em;}
#firstlist {margin-left: 100px;
    color: mediumblue;}
#secondlist {margin-left: 100px;
    color: crimson;}
#thirdlist {margin-left: 100px;
    color: mediumblue;}
#fourthlist {margin-left: 50px;
    color: mediumblue;}
#fifthlist {color: purple;}
.col-one {float: left;
    width: 33%;
    padding-left: 2em;
    padding-right: 2em;}
.col-two {float: left;
    width: 33%;
    padding-left: 2em;
    padding-right: 2em;
    font-weight:bold;}
.col-three {float: right;
    margin-top: 120px;
    width: 33%;
    padding-left: 2em;
    padding-right: 2em;}
.col-three2 {float: right;
    width: 33%;
    padding-left: 2em;
    padding-right: 2em;}
.col-four {margin-right: 300px;
    margin-top: 100px;
    width: 60%;
    padding-left: 2em;
    padding-right: 2em;}
.resort {font-weight:bold; color: #1976D2; font-size: 1.2em;}
/* Styles for the contact form */
form {display: grid;}
.container {
  border-radius: 5px;
  background-color: lavenderblush;
  padding: 20px;}
 input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;}
input[type=submit] {
  background-color: hotpink;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
input[type=submit]:hover {
  background-color: steelblue;
}
label {font-weight: bold;}




