*{
    box-sizing: border-box;
}

:root{
    --border-radius: 40px;
    --color1:tan;
    --color2:rgb(153, 250, 108);
    --color3:teal;

}

body{
    background-color: var(--color1);
}

h1{
    text-align: center;
    font-size: 3em;
}

figure img {
    display: block;
    width: 450px;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 1.25em;
}

figure figcaption{
    display: block;
    text-align: center;
    font-size: 1.5em;
    background: var(--color2);
    padding: 1.25em;
    border-radius: var(--border-radius);
}

figure {
    margin: 0px 15px 0px auto;  /* top right bottom left*/
    display: inline-block;
    padding: 1.25em;
    background: var(--color3);
    border-radius: var(--border-radius);

}

section{
    width: 65%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.25em;
}