figcaption {
    font-style: italic;
    margin-top: 5px;
}
figure {
    text-align: center;
    margin: 0 auto;
}
.photo-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.photo-row figure {
    max-width: 400px;
}
.layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.layout > *:not(aside) {
    flex: 1;
}
aside {
    background-color: #f2f2f2;
    padding: 15px;
    width: 250px;
    border-left: 4px solid #777;
    border-radius: 6px;
    margin-top: 20px;
}
h2 {
    font-size: 28px;
    margin-top: 20px;
    text-decoration: underline;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}
.review {
    background-color: #f7f7ff;
    padding: 20px;
    border: 2px solid #aaa;
    border-radius: 8px;
    margin-top: 30px;
}

.review h2 {
    color: #333366;
}
a:link {
    color: #1a0dab; 
}

a:visited {
    color: #551a8b; 
}

a:hover {
    color: darkred;
    text-decoration: underline; 
}

a:active {
    color: orange; 
}
figure > img {
    border: 3px solid #ccc;
    border-radius: 10px;
}
h2 + p {
    margin-top: 5px;
}




