<% arts.each do |art| %>
<% if art.image.attached? %> <%= image_tag art.image, class: "w-full h-full object-cover transform hover:scale-105 transition-transform duration-500" %> <% end %>

<%= art.city.name %>

<%= art.weather_date.strftime("%B %d, %Y") %>

<%= art.temperature %>°C
<%= art.description %>
<%= link_to "View Details", city_weather_art_path(art.city, art), class: "btn btn-primary btn-outline" %>
<% end %>