﻿.vote-form
{
    display: flex;
    gap:50px;
    justify-content: center;
    margin-top:50px;
    flex-wrap:wrap;
}

.vote-button {
    background: var(--dark-blue);
    color: white !important;
    text-decoration: none !important;
    padding: 5px 20px;
    border: none;
    border-radius: 5px;
    transition: 0.2s;
    font-size: 20px;
    height: fit-content;
}

.vote-buttons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    justify-content: center;
}

.vote-button:hover{
    transform: scale(1.02);
}

.vote-num {
    text-align: center;
    color: white;
    font-family: 'Hamlin';
    font-size: 30px;
}

.crown{
    width:50px;
}
.vote-supercontainer {
    position: fixed; /* Stays fixed regardless of scrolling */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    background: rgba(255, 255, 255, 0.4); /* Optional: Semi-transparent background */
}

.vote-container {
    padding: 50px;
    background: white;
    border-radius: 5px;
    font-family: 'Hamlin';
    font-size: 20px;
    background: var(--banner-green);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}