/* CSS Document used for the coffee table homework assignment
Author: Jerron Skiba
Course: ITWP 1000
File: styles.css
Information on using external CSS style sheet is located in Chapter 3. Information on media queries is located 
in Chapter 7. Information on tables and CSS formatting for tables is located in Chapter 8.
*/

body {
    background-color: #FFFFFF;
    color: black;
    margin: 10px;
    font-family: Arial, sans-serif;
}

h1, h2, nav, div, footer {
    text-align: center;
    font-size: 1em;
}

p {
    margin: 10px;
    padding: 20px;
    line-height: 1.5em;
}

.center {
    text-align: center;
    float: left;
    padding-left: 10px;
    list-style-type: none;
}


/*caption tag
*/
caption {
    text-align: center;
}

/*responsive image class
*/

.responsive {
    max-width: 100%;
    height: auto;
    border: 1px solid #51471A;
    border-radius: 10px;

}

td.price {
    white-space: nowrap;
}

td.specialty {
    white-space: nowrap;
}

/*ID
*/

#validation {
    text-align: center;
}

/*media query that hides the image when the screen size is @ 550 pixels or lower
*/

@media only all and (max-width: 550px) {
    img {
        display: none;
    }
}

.collapsible{
    background-color: black;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
    
}

.collapsible:focus {outline:0;}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: black;
  
}

/*footer*/
.site-footer{
  background-color: black;
  padding:0px 0 20px;
}


.footer-links{
  text-align: center;
  background-color: black;
  font-size: 15px;
  line-height: 24px;
    
}

.footer-links.hide{
  text-align: center;
  background-color: black;
  font-size: 15px;
  line-height: 24px;
  transform: translateX(0%)
}


.site-footer hr{
  border-top-color:#bbb;
  opacity:0.5
}

.site-footer hr.small{
  margin:20px 0
}

.site-footer button{
  color:#fff;
  text-align: center;
  width: 100%;
  letter-spacing: 5px;
  font-size:30px;
  text-transform:uppercase;
  margin-top:10px;
  transform: translateX(3%);
  font-size: 18px;
  font-family: 'Nunito', sans-serif;
  border: none;
  cursor: pointer;

}

.site-footer a{
  color: white;
}

.site-footer a:hover{
  color:red;
  text-decoration:none;
}


.footer-links li{
  display:block;
  text-align: center;
  color: red;
}

.footer-links a{
  color: white;
  letter-spacing: 2px;
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
}

.footer-links a:active,.footer-links a:focus,.footer-links a:hover{
  color:red;
  text-decoration:none;
}

.footer-links.inline li{
  display:inline-block
}

.copyright-text{
    color: white;
    text-align: center;
    transform: translateX(3%);
    padding: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    
}