/* Custom styles in addition to Tailwind CSS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.hero-image {
    background-image: url('../images/hero-image.jpg');
    background-size: cover;
    background-position: center;
}

/* Add any additional custom styles here */
.vote-button {
    transition: all 0.3s ease;
}

.vote-button:hover {
    transform: scale(1.05);
}