/*body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 20px;
    background-color: #f4f4f4;
}*/

/*h1 {
    text-align: center;
    color: #ffffff;
    background-color: #1d6095;
}*/

.attractions-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.attraction {
    background: white;
    padding: 15px;
    margin: 10px;
    width: 350px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.city-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.city-list .city-item {
    background: white;
    padding: 15px;
    margin: 10px;
    width: 350px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.city-list .city-item .city-item-image {
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.city-list .city-item-1 .city-item-image
{
    background-image: url(../img/dublin.jpg);
}

.city-list .city-item-2 .city-item-image
{
    background-image: url(../img/cork.jpg);
}

.city-list .city-item-3 .city-item-image
{
    background-image: url(../img/galway.jpg);
}