body{
background:#0b0b0b;
color:white;
font-family:Arial;
}

header{
text-align:center;
padding:20px;
}

.candidates{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
padding:20px;
}

.card{
background:#111;
border-radius:15px;
padding:15px;
text-align:center;
box-shadow:0 0 10px rgba(255,215,0,0.5);
}

.card img{
width:100%;
border-radius:10px;
}

.vote-btn{
background:#ff007f;
border:none;
padding:10px 20px;
color:white;
border-radius:10px;
cursor:pointer;
}

.vote-btn:hover{
background:#ff2a95;
}