/*
abcd style for elements <abcd>
#ffff style for elements <div id="ffff"> 
.fooo style for elements with <div class="fooo">
abcd.fooo style for elements with <abcd class="fooo">
*/

body {
  background-image: url('../images/side-kick-1.jpg');
}

header {
  text-align: center;
}

.page-title {
  color: darkblue;
  text-align: center;
  background-color: white;
  font-size: 44px;
}

div.footer {   /* larger footer div */
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

footer {  /* the footer from footer-block.html */
  width: 100%;
  text-align: center;
}

div.sub-footer-elem {  /* each of the elements in the footer */
  display: flex;
  justify-content: center; 
  display: inline-block;
  border-radius: 5px;
  text-align: center;
  font-size: 22px;
  margin: 25px 0 0 0;
}

a.footer-link-btn {
  background-color: lightslategray;
  text-decoration: none;
  color: darkblue;
  border-radius: 9px;
  margin: 15px 10px 15px 10px;
  padding: 10px;
  transition: background-color 0.3s;
}

a.footer-link-btn:hover {
  background-color: darkblue;
  color: lightgray;
}

div.home-elem {
  font-size: 30px;
  font-weight: bold;
  color: darkblue;
  background-color: white;
  display: flex;
  justify-content: center; 
  display: inline-block;
  margin: 0px 10px 0px 10px;
  padding: 10px;
}

@font-face {
  font-family: 'Chinese Takeaway';
  src: url('CHINESETAKEAWAY.ttf');
}

div.shedule-elem {
  font-family: 'Chinese Takeaway', sans-serif;
  color: red;
  font-size: 32px;
  background-color: white;
  margin: 20px 20px 0px 10px;
  padding: 10px;
}

div.location-elem, div.about-elem {
  background-color: white;
  margin: 10px 20px 10px 10px;
  padding: 10px;
}

img {
 border-radius: 5px;
}

