/* Mike Cordon - mrcordon@dmacc.edu 
   WDV101*/

/*stylesheet for the koala website assignment
filename: koalastylesheet.css
01/29/2024
*/
body {
    background-color:#6faf8c;
    
}

div {
    width: 90%;
    margin: 0 auto;
}
/* grouped selectors */
h1, h2, h3 {
    color: rgb(7, 7, 8);
    text-shadow: 1px 1px rgb(180, 194, 241);
    font-family: 'Verdana';
    
}

/* paragraphs */
p   {
    font-family: 'Trebuchet MS',sans-serif;
    font-size: 14pt;
    background-color: rgb(195, 212, 193);
    padding: 20px;
    border-color: black;
    border-width: 2px;
    border-style: solid;
    background-image: url(eucalyptus-background.jpg);

}

h2 {
    text-align: left;
}

h3 {
    font-family: 'Lobster', cursive; /* From Google Fonts */
    font-size: 16pt
  }

a {
    text-shadow: 2px 2px 4px black;
    text-transform: uppercase;
  }



/* Descendant Selector */
ul li {
    font-weight: bold;
}

/* Independent Class Selector */
.highlight {
    background-color: yellow;
}

/* Dependent Class Selector */
p.ulined {
    text-decoration: underline;
}

/* Pseudo-Class Selector */
a:hover {
    color: green;
}

/* border around h1 elements */
h1 {
    	border: 1px solid black;
	background-color: rgb(11, 104, 88); 
	font-weight: bolder;
	text-align: center;
}

/* float classes */
.floatLeft{
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.floatRight{
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* clear the float class */
.clearFloat{
    clear: both;
}

/* clearfix hack */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
  }

  /* Apply padding, background-color, border, and margin to all images */
img {
    padding: 10px; 
    background-color: #f0f0f0; 
    border: 1px solid #ccc;
    margin: 10px; 
  }
  
  /* Remove padding, background-color, border, and margin from the banner and logo */
  .banner{
    padding: unset; /* Remove padding */
    background-color: unset; /* Remove background color */
    border: unset; /* Remove border */
    margin: auto; /* Remove margin */
    display: block;
    width: 100%;
  }

  .logo{
    padding: unset; /* Remove padding */
    background-color: unset; /* Remove background color */
    border: unset; /* Remove border */
    /* center elements */
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .paralogo{
    background-image: url(quentin-grignet-koala-unsplash.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
  }

  ul, ol { 
    overflow: hidden; padding-left: 40px; margin-left: 0; 
}
        
ol li, ul li { 
    list-style-position: outside; padding-left: 0;  
} 

.col{
    float: left;
    width: 27.3%;
    margin: 1%;
    
}

.row:after {
    content: "";
    display: table;
    clear: both;
}
