/* Mike Cordon - mrcordon@dmacc.edu 
   WDV101*/

/*stylesheet for the koala website assignment
filename: mike-cordon-stylesheet.css
02/18/2024
*/

body {
    background-image: url('images/jonathan-van-den-broek-forest-unsplash.jpg');
    padding: 40px;
    border: 10px;
    border-color: darkgreen;
    border-style: groove;

}

h1 {
    color: black;
    text-shadow: 1px 1px rgb(54, 70, 62);
    font-family: 'Verdana';
    font-size: 24pt;
    text-align: center;
}

h3 {
    font-size: 24pt;
    text-align: center;
    font-weight: bolder;
}

h2, h4, h5 {
    text-align: center;
    font-weight: bolder;
} 

.a-class {
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: x-large;

}

p {
    padding: 20px;
    border-width: 5px;
    border-color: black;
    border-style: solid;
    background-color: lightblue;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14pt;
    text-align: justify;
}

.imagec {
    padding: 10px; 
    background-color: #f0f0f0; 
    border: 1px solid #ccc;
    margin: 10px; 
}

/* float classes */
.floatLeft{
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.floatRight{
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

.centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}