.button-container { text-align: center; margin-top: 20px; } .custom-button { background: linear-gradient(135deg, #ff4500, #ff7f50); color: white; padding: 22px 60px; text-align: center; text-decoration: none; font-size: 22px; font-weight: light; border-radius: 25px; border: 2px solid black; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); transition: all 0.3s ease; display: inline-block; font-family: ‘Calibri’, sans-serif; } .custom-button:hover { background: linear-gradient(135deg, #ff7f50, #ff4500); transform: scale(1.15); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6); }
.button-container { text-align: center; margin-top: 20px; } .custom-button { background: linear-gradient(135deg, #ff4500, #ff7f50); color: white; padding: 22px 60px; text-align: center; text-decoration: none; font-size: 22px; font-weight: light; border-radius: 25px; border: 2px solid black; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); transition: all 0.3s ease; display: inline-block; font-family: ‘Calibri’, sans-serif; } .custom-button:hover { background: linear-gradient(135deg, #ff7f50, #ff4500); transform: scale(1.15); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6); }