
/* CSS reset */
header, body, p, h1, h2, h3, h4, footer{
    padding: 0; 
    margin: 0;
}
  
/*box model fix here*/
*{ -moz-box-sizing: border-box; -webkit-box-sizing: border-box;  box-sizing: border-box; 
}
 
html{
   background:rgb(231, 231, 231);
   font-family: 'Ubuntu', sans-serif;
   background-color: #c2946f;
}

div#wrapper{
    margin-left:170px;
    margin-right: 150px;
    max-width: 1100px;
    box-shadow: 0 0 20px #444;
    background-color: white;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    width: 1080px;
    height: 260px;
    background-image: url("../images/Rabbit-Turtle-story.jpg");
    background-repeat: no-repeat;
    background-size: 1030px 260px; 
}

/* putting in the top header h1-h2*/
#company {
    color: rgb(248, 252, 1);
    font-size: 3.25rem;
    padding-top: 20px;
    text-shadow: 3px 3px rgb(39, 39, 39);
    text-indent: 20px;
    margin: 0 170px 30px 10px;
}

#slogan {
    color:rgb(255, 251, 6);
    font-size: 2rem, ;
    padding-top: 20px;
    margin-left: 40px;
    text-shadow: 3px 3px rgb(2, 2, 2);
    text-indent: 5px;
}

/* main body stuff*/ 
main, footer {
    background-color:rgb(231, 231, 231);
    clear:both;
}

h1 {
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    align-items: left;
    color:#048000;
    padding-top: 20px;
    margin-bottom: 15px;
    text-indent: 30px;
}

h2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: left;
    color: #048000;
    margin: 10px 0 5px 0;
    text-indent: 30px;
    font-size: 26px;
}
 
h3 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: left;
    color: #048000;
    margin: 10px 0 5px 0;
    text-indent: 30px;
}

.objective {
    list-style-type: circle;
    text-indent: 40px;
    margin-bottom: 40px;

}

#pageName {
    display: block;
    height: 880px;
    background-color:rgb(231, 231, 231);
    clear: both;
    padding-left: 15px;
    padding-right: 10px;
}

button {
    display: block;
    border: 1px solid black;
    border-radius: 15px;
    background-color: rgb(163, 245, 163);
    width: 120px;
    font-size: 16px;
    color: black;
    padding: 0.3rem;;
    margin-left:31px;
    margin-bottom: 5px;
}


/* setting the table or article*/
.articles { 
    display: flex;
    flex-direction: row;
    text-align: left;
    margin-left: 15px; 
}

article {
    width: 30%;
    margin-left: 15px;
}

article.a1 {
    width: 250px;
    height: 200px; 
}

article.a1 h2 {
    margin-left:10px;
    font-size: 20px;
    text-align: left;
    color: black;
}

article.a2 {
    width: 250px;
    height: 200px;
    
}

article.a2 h2 {
    font-size: 20px;
    text-align: left;
    color: black;
    
}

article.a3 {
    width: 250px;
    height: 200px;
    margin-left: 50px;
}

article.a3 h2 {
    margin-left:10px;
    font-size: 20px;
    text-align: left;
    color: black;
    
}

textarea {
    width: 200px;
    height: 150px;    
    background-color: rgb(255, 255, 254);
}


footer{
    height: 70px;
    background-color:#552d05;
    font-size: 14px;
    text-align: center;
    max-width: 1920px;
    padding: 20px;
    color: white;
}