.gift-buttons {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
flex-wrap: wrap;
padding: 30px 10px 40px;
}
.gift-button {
margin: 20px;
width: 170px;
height: 170px;
border-radius: 100px;
background: #eee;
transition: all 0.5s;
display: block;
text-align: center;
}
.gift-button h2:first-child {
margin-top: 38px;
}
.gift-button h1 {
margin-top: 10px;
}
.gift-button h2,
.gift-button h1 {
color: black !important;
}
.gift-button:hover {
background: red;
cursor: pointer;
cursor: hand;
}
@media screen and (max-width: 450px) {
.gift-button {
margin: 3px;
width: 140px;
height: 140px;
}
.gift-button h1 {
margin-top: 0;
margin-bottom: 0;
}
/*article.super header h1 {
font-size: 40px;
}*/
}
