/*styles.css*/
/*Ashley Crawford*/
/*ITWP 1050*/
/*style sheet for homework1*/


/*body style with backroung img.*/
body{
    background: #1eb5c9;
    background-image: url("images/bg.jpg"), url("images/pic1.jpg");
    align-items: center;
    background-repeat: no-repeat, no-repeat;
    background-size:auto, contain;
    background-blend-mode: lighten;
    background-position: top, bottom;  
    color: #000000;
}



/*Parent of 2nd backround img.*/
.divparent {
    position:relative;
    top: 0;
    left: 0;
}



/*2nd beckground img.placed on top of another*/
.div1 {
    background-image: url(images/bg2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position:relative;
    background-position: center;
    height: 400px;
    width: 600px;
  }
  

 
/*heading style*/ 
h1 {
    letter-spacing: 4px;
    word-spacing:10px ;
    line-height: 60px;
    color:#000000;
    font-weight: bold;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 45px;
    text-align: center;
    font-family: 'quicksandlight', Arial, Helvetica, sans-serif;
    font-variant: small-caps;
    font-weight: bolder;
    text-shadow: 2px 2px #ffffff;
}


/*heading style*/
h2{
    letter-spacing: 3px;
    word-spacing:8px ;
    line-height:50px;
    font-family: 'quicksandbold', Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-variant: small-caps;
    text-align: center;
    color: rgb(255, 255, 255);
}


/*heading style*/
h3{
    font-family: 'quicksandlight', Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-variant: small-caps;
    text-align: center;
 
    
}


/*heading style*/
h5 {
    letter-spacing: 4px;
    word-spacing:10px ;
    line-height: 60px;
    color:#ffffff;
    font-weight: bold;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 45px;
    text-align: center;
    font-family: 'quicksandlight', Arial, Helvetica, sans-serif;
    font-variant: small-caps;
    font-weight: bolder;
    text-shadow: 2px 2px #7a7575;
}




/*paragraph style*/
p{
    font-family: 'quicksandregular', Arial, Helvetica, sans-serif;
    font-size: 18px;
    text-align:justify;
    line-height: 35px;
    text-justify:auto;
    text-indent: 40px;
    background-color: #ffffff;
    opacity: .8;
    margin-left: 50px;
    margin-right: 50px;
    padding-left: 20px;
    padding-right: 20px;
}


/*link link style*/
a{
    text-decoration: underline;
    color: rgba(23, 68, 215, 0.912);
}


a:link{
    font-family: 'quicksandbold_italic', Arial, Helvetica, sans-serif;
    color: rgb(255, 255, 255);
    text-decoration: underline;
}


/*visited link style*/
a:visited{
    color: #2173dd;
    text-decoration: none;
}


/*hover link style*/
a:hover{
    color: #00f7ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 100%;
}

/*active link style*/
a:active{
    color: #00ffc8;
    text-decoration: underline;
    font-weight: bold;
}


/*first letter first paragraph style*/
h1 + p::first-letter{
    color: white;
    background-color: rgb(64, 170, 240);
    font-size: 30px;
    font-variant: small-caps;
    font-family: 'quicksandregular', Arial, Helvetica, sans-serif;
    border-radius: 2px;
    box-shadow: 2px 2px 0 rgb(31, 91, 223);
    font-size: 250%;
    padding: 6px 3px;
    margin-right: 6px;
    float:none;
}



/*first type style*/
p:first-of-type {
  font-weight: bold;
  color: #025e7a;
  font-style: normal;
  font-size: 18px;
  text-align: center;
}




/*medium img style*/
img{
    border-color: rgb(255, 255, 255);
    border-style: double;
    border-radius: 40px;
    height: 300px;
    width: 400px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}




/*smallest img style*/
.img2{
    border-color: rgb(255, 255, 255);
    border-style: double;
    border-radius: 40px;
    height: 250px;
    width: 280px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}




/*biggest img style*/
.img3{
    border-color: rgb(255, 255, 255);
    border-style: double;
    border-radius: 40px;
    height: 250px;
    width: 450px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

  
/*divied img style*/
  .designdivide{
    mix-blend-mode: multiply;
    opacity: .3; 
    width:500px;
    height: 60px;
  }


  
/*table style*/
 table{
    margin-left: auto;
    margin-right: auto;
 } 


 
/*row style*/
 #row{
    width:100%;
    text-align:center;
    padding:5px;
   }
   

   
/*column style*/
   .col{
    width:25%;
    height:auto;
    text-align:center;
    padding:5px;
    margin:2px;
    display:inline-block;
    background-color: #ffffff00;
   }


   
/*unordered list style*/
   ul{
    border-color: rgb(255, 255, 255);
    border-style: double;
    border-radius: 40px; 
    background-color: #ffffff;
    opacity: .7;
    font-family: 'quicksandregular', Arial, Helvetica, sans-serif;
    width: 700px;
    margin: 0;
    text-align: center;
    margin-left: 400px;
    padding: 0;
   }  