* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 20px;
}

h1, h2, h3 {
    color: #222;
}

section {
    margin-bottom: 40px;
}

#smithsIntro, #cureIntro {
    text-align: center;
}

.bandImage {
    width: 80%;
    border-radius: 10px;
    margin-top: 20px;
}

#poll {
    background-color: #eee;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

#poll h3 {
    color: #444;
}

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

/* Styling for the Smiths */
#smithsIntro {
    background-color: darkmagenta;
    color: white;
    padding: 20px;
}

#smithsBeef, #mostPopularSongs, #mostPopularAlbums, #whereAreTheyNow {
    background-color: #f7e1ff;
    border-radius: 8px;
    padding: 15px;
}

#pollResult {
    background-color: #c2f0c2;
    border-radius: 8px;
    padding: 15px;
}


#cureIntro {
    background-color: darkred;
    color: white;
    padding: 20px;
}

#cureBeef, #mostPopularSongs, #mostPopularAlbums, #whereAreTheyNow {
    background-color: #ffd9d9;
    border-radius: 8px;
    padding: 15px;
}


.gallery-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    flex-wrap: wrap;
}

.gallery-image {
    width: 250px;
    height: 250px;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.2s;
    border-radius: 8px;
    object-fit: cover;
}

.gallery-image:hover {
    transform: scale(1.1);
}


.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
}


.modal-content {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}