body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}

header {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 0.3em 0;
	height: 70px; /* Set a fixed height for the header */
}

#years {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
}

.year {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 5px;
    padding: 20px;
    width: 700px;
}

.holiday {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

h2 {
    color: #333;
}

h3 {
    color: #555;
}

.details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Layout description and items side by side */
    gap: 8px; /* Adjust spacing between description and items */
}

p {
    color: #777;
    margin-bottom: 8px;
    margin-top: 0; /* Ensure top margin is reset */
}

.item-list {
    display: flex;
    flex-direction: column; /* Layout items vertically */
}

.destination-image {
    max-width: 200px; /* Set a maximum width for the image */
    max-height: 100px; /* Set a maximum height for the image */
	border-radius: 8px; /* Add border-radius for a rounded image */
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    margin-bottom: 8px;
    align-self: flex-start; /*
