/* style.css */

@font-face {
  font-family: DancingScript;
  src: url(fonts/DancingScrip-Regular.ttf);
  font-weight: normal;
}

@font-face {
  font-family: DancingScript;
  src: url(fonts/DancingScript-Bold.ttf);
  font-weight: bold;
}

body {
  font-family: "DancingScript";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
  
header {
  background-color: #561212;
  padding: 20px;
  text-align: center;
}
  
main {
  padding: 20px;
}
  
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

h1 {
  text-align: center;
  font-family: "DancingScript";
  text-shadow: 2px 2px 0 #88abd1, 3px 3px 7px #666666;
}
  
@media (max-width: 600px) {
  header {
    padding: 10px;
  }
  main {
    padding: 10px;
  }
}