/*
 Theme Name:   The Anxious Bird
 Theme URI:    https://bevankay.me
 Description:  Theme for The Anxious Bird
 Author:       Bevan Kay
 Author URI:   https://bevankay.me
 Template:     generatepress
 Version:      0.1
*/

/* Remove space at bottom of paragraph section */
p:last-of-type {
	margin-bottom: 0;
}

/* Smaller Headings Mobile Sizes */
@media (max-width: 768px) {
    h3 {
        font-size: 20px;
    }
}

/* Custom Grow Animation - Use .grow */
.grow {
	transition: 300ms ease transform;
}

.grow:hover {
	transform: scale(1.03);
	box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
}