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

h1, h2 {
    color: #444;
    text-align: center;
}

p {
    margin: 0 0 15px;
    padding: 0 20px;
}

/* Navigation Styles */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #555;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #777;
}

/* Footer Navigation */
.footer-navigation ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    background-color: #555;
}

.footer-navigation ul li {
    margin: 0 10px;
}

.footer-navigation ul li a {
    color: white;
    text-decoration: none;
}

/* Voting Page Styles */
.voting-section {
    display: flex;
    justify-content: space-around;
    margin: 20px auto;
    padding: 20px;
}

.photo-option {
    text-align: center;
    margin: 0 15px;
}

.photo-option img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.photo-option img:hover {
    transform: scale(1.05);
}

button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #555;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #777;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}
