/* 
Filename: style.css
Author: Greg Buchmann
Description: ITWP 2750 PHP - Project 3  DB Search Engine
Note: This document validates as CSS level 3 ! 
*/

/*
create a universal style rule with the
specified properties and values. Be sure to exclude spaces and line breaks.
a. Set the margin to zero.
b. Set the padding to zero.
c. Set the border to zero.
d. Set the outline to zero.
e. Set the line height to 1.5em.
f. Set the vertical alignment to baseline.
g. Set the font family to Arial, Helvetica, sans-serif.
h. Set the list style to none.
*/

*{margin:0;padding:0;border:0;outline:0;line-height:1.5em;vertical-align:baseline;font-family:Arial,Helvetica,sans-serif;list-style:none;}



body {
  background-color: #F3F3F3;
  font-family: arial;
}

.article-container {
  width: 900px;
  background-color: #FFF;
  padding: 30px;
}

.article-box {
  padding-bottom: 50px;
  width: 100%;
}

input {
  padding: 0px 20px;
  width: 300px;
  height: 40px;
  font-size: 22px;
}

button {
  width: 100px;
  height: 44px;
  font-size: 22px;
}

h3 {
  margin-bottom: 10px;
}

p {
  margin: 8px;
}

footer p {
  text-align: center;
}
