body {
      background-color: #111111;
      margin: 0;
      padding: 0;
    }

.top-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    }

.menu a:hover,
.icons a:hover {
    color: #b36029; 
    text-shadow: 0 0 5px darkblue;
    transition: all 0.3s ease;
}

.navbar-logo {
    width: 120px;
    height: 65px;
    transition: transform 0.3s ease;
}

.icons a img {
    height: 35px;
    width: 35px;
    transition: filter 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(0.95);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111111;
    color: white;
    padding: 0px 10px;
    font-size: 18px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000; 
    background-color: #111111;
}

.menu {
    display: flex;
    gap: 25px;
    flex-grow: 1;   
    align-items: center;
    margin-left: 150px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.icons {
    display: flex;
    gap: 35px;
    justify-content: right;
    margin-right: 300px;
}

.icons a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.icons a img {
    height: 35px;
    width: 35px;
    transition: filter 0.3s ease;
}

.icons a img:hover {
    filter: invert(1) brightness(2);
}

.banner-section {
    position: relative;
    width: 100%;
    height: 550px;
    background-image: url('openart-image_dFVstbLy_1748040645765_raw.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.banner-content {
    position: relative;
    z-index: 1;
    color: white;
}

.banner-content img {
    width: 700px;
    height: auto;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    margin-top: 0;
    margin-bottom: 8px; 
}

.banner-content img:hover {
    transform: scale(0.96) translateY(-20px);
}   

.banner-content h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 60px;
    font-weight: 700;   
    color: #ffffff;
    margin: 0;
    word-spacing: 12px;
    text-shadow: 2px 2px 4px black, -2px -2px 4px black, 2px -2px 4px black, -2px 2px 4px black;
    margin-top: 0;
    margin-bottom: 8px;
}

.banner-content p {
    font-size: 25px;
    font-weight: 400;
    margin-top: 10px;
    color: white;
}

.voting-section {
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.voting-section h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #111111;
}

.vote-box {
    display: block;
    background: #333;
    border: 2px solid #bbb;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 12px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.3);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
}

.vote-box:hover {
    box-shadow: 0 6px 12px rgba(120, 120, 120, 0.5);
    border-color: #888;
    color: #222;
  }
