* {
    margin: 0; padding: 0; box-sizing: border-box;
}
body {
    background-color: green;
    font-family: "Playwrite AU SA", cursive;
    padding: 40px;
    padding-top: 40px;
    padding-bottom: 150px;
}
header {
    background-color: darkgoldenrod;
    text-align: center;
    box-shadow: .5px -8px 10px 5px yellow;
    width: 40%;
    margin: 0 auto;
    padding: 10px 20px;
}
#p1 {
    text-align: center;
    background-color: lightcyan;
    border-radius: 20px;
}
#p2 {
    width: 100%;
    font-size: 1em; line-height: 1.5;
    margin: 10px auto;
    text-align: center;
    background-color: lightgrey;
    border-radius: 20px;
}
.image-text-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 20px;
    color: yellow;
    text-align: center;
}
.image-text-container img {
    display: block;
    max-width: 300px;
    height: auto;
    margin-right: 20px;
    box-shadow: 0 0 5px 5px red;
}
.text-content {
    flex-grow: 1;    
}
.text-content h3 {
    margin-top: 0;
}
footer {
    position: fixed;
    text-align: center;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: lavender;
    color: darkred;
    padding: 10px;
    box-sizing: border-box;
    z-index: 1000;
    opacity: 45%;
}

