body {
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: rgb(250, 249, 247);
}

h1 {
    margin: 7% auto 3%;
    text-align: center;
}

h2 {
    font-weight: normal;
    text-align: center;
    margin: auto auto 3%;
}

#wrapper {
    margin: 10px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 75%;
    height: 100%;
}

.plant {
    margin: auto;
    text-align: center;
    width: 450px;
    align-self: flex-start;
}

.plant img {
    width: 450px;
    transition: transform 1s;
}

.plant img:hover {
    filter: opacity(0.9);
    transform: scale(105%);
    -webkit-transform: rotate(3deg);
}

.plant p {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease;
}

.plant img:hover+p {
    visibility: visible;
    opacity: 1;
}