/* Add your CSS styles here! */
/* Practice different selectors:
   - Element selectors: h1, p, button
   - Class selectors: .verse, .chorus, .emphasis
   - ID selectors: #special-item
   - Descendant selectors: header p, .practice-area button
*/

.color-red {
  color: red;
}

.color-blue {
  color: blue;
}

.color-green {   
  color: green;
}

.page {
  width: 210mm;   
  align-items: center;       
  padding: 20px;
  box-sizing: border-box;
  margin: 0 auto;
  background-image: url("https://img.freepik.com/free-photo/vintage-grungy-textured-paper-background_53876-103932.jpg?semt=ais_hybrid&w=740");
  background-color: white;
  font-family: Arial, sans-serif;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1); 
}

img{
  width:700px;
  height:600px;
  align-items: center;
}

.title1{
  text-align: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
  /* background-color: burlywood; */
  border-radius: 2px;
  padding: 2px;
}
