/* 
   CSS Requirements: 
   1. Text color
   2. Background color
   3. Margin or Padding
*/

body {
    /* BACKGROUND COLOR requirement */
    background-color: #f9f9fb; 

    /* TEXT COLOR requirement */
    color: #2c3e50; 

    /* MARGIN and PADDING requirement */
    margin: 40px; 
    padding: 20px;

    font-family: Arial, sans-serif;
    line-height: 1.6;
}

h1 {
    color: #3498db; /* Specific color for the main heading */
    text-align: center;
}

img {
    margin-top: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
}