/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General styles */
body {
    font-family: 'Trebuchet MS', sans-serif;
    background-image: url('Day of the Dead.jpeg');
    color: #fff;
    padding: 20px;
}

/* Header styling */
header {
    background: #6B0023;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #FFD700;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

nav ul li a:hover {
    color: #FF5733;
}

/* Main content styling */
main {
    margin: 20px 0;
}

main section {
    padding: 20px;
    background: #282828;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

h1, h2 {
    margin-bottom: 15px;
    color: #FFD700;
}

h3 {
    color: #FF5733;
}

p {
    font-size: 16px;
}

/* Altar and photo sections */
.altar-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.altar-item {
    width: 250px;
    text-align: center;
}

.altar-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.altar-item h3 {
    margin: 10px 0 5px;
}

.altar-item p {
    font-style: italic;
    color: #B0C4DE;
}

/* Footer styling */
footer {
    text-align: center;
    padding: 10px 0;
    background: #6B0023;
    color: #FFD700;
}

footer p {
    margin: 0;
}
