@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=VT323&display=swap');

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    line-height: 1.6;
}

/* Container Styles */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4a47a3;
    color: #fff;
    width: 100%;
}

header a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header .title h1 {
    font-size: 26px;
    text-align: center;
}

/* Section Styles */
section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

section:nth-child(even) {
    background-color: #f4f4f4;
}

section h1 {
    color: #4a47a3;
    font-size: 24px;
    margin-bottom: 10px;
}

section p {
    color: #333;
    font-size: 18px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    header ul {
        margin-top: 20px;
    }

    header ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }
}

.vote-button {
    display: inline-block;
    background-color: #4a47a3;
    color: #fff;
    padding: 15px 30px;
    margin-top: 20px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.vote-button:hover {
    background-color: #373580;
}