* {
    margin: 5px;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    margin: 5px;
    color: #8f3435;
    font-size: 40px;
    line-height: 50px;
    padding-bottom: 15px;
    padding-top: 10px;
    text-shadow: 2px 2px 10px white;
}

h3 {
    margin: 5px;
    color: #8f3435;
    text-decoration-line: bold;
    text-decoration: underline;
    padding-top: 20px;
}

body {
    background-color: #eac4c4;
}

main article {
    margin: 5px;
    display: grid;
    column-gap: 4rem;
    row-gap: 4rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

main article img {
    margin: 5px;
    width: 100%;
}

figcaption {
    color: #b54040;
    padding-top: -5px;
    text-decoration: bold;
}

.title {
    padding: 10px;
    text-align: left;
    background: #d99595;
    margin: 0;
    border-radius: 20px;
    text-align: center;
}

img {
    border: 3px solid #ba4445;
    border-radius: 5px;
    box-shadow: 2px 2px 10px #8f3435;
}

a {
    color: white;
}