@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans&display=swap');

/* General body styles */
body {
    margin: 0;
    padding: 0;
    background-color: black; /* Set background color of the entire site to black */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Heading styles */
h1 {
    font-family: 'Abril Fatface', serif; /* Set Abril Fatface for headings */
    font-size: 2.1rem;
    font-weight: 400;
    color: lightgray; /* Set heading color to light gray */
    font-weight: 400; /* Set font weight to 400 */
    margin: 20px 0; /* Add margin to top and bottom of the heading */
    padding: 0; /* Ensure no additional padding */
}

/* Paragraph styles */
p1 {
    font-family: "DM Sans";
    font-size: 1.5rem;
    color: goldenrod; /* Set paragraph text color to goldenrod */
    margin: 20px 0; /* Add margin to top and bottom of the paragraph */
    padding: 0; /* Ensure no additional padding */
}


p2{
    font-family: "DM Sans", "Arial";
    font-size: 1.5rem;
    font-weight: 400;
    font-style: normal;
    color: slateblue;
    text-decoration-line: underline;
}



alt {
    font-family: "DM Sans", "Roboto", "Arial";
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    color: slategrey;
    text-align: center;
  }


  figcaption {
    font-family: "DM Sans", "Abril Fatface", "Arial";
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: goldenrod;
    margin-top: 10px;
    margin-bottom: 50px;
    text-align: center;
}