.btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 40px;
    gap: 5px;
}

main h2::after {
    content: "";
    display: block;
    background: linear-gradient(90deg, dodgerblue, darkviolet);
    height: 3px;
    width: 100px;
    border-radius: 15px;
    margin: 8px auto 0;
}

.place {
    border-bottom: 2px solid #ececec;
    margin-bottom: 15px;
}

section {
    background: whitesmoke;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 15px;
}

article {
    width: 400px;
    height: 350px;
    padding: 25px;
    overflow: hidden;
}

img {
    border-radius: 15px;
}

article > p {
    height: 175px;
    overflow-y: scroll;
}
