Eco Tourist Spots - Index
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #e6f2f2;
margin: 0;
padding: 20px;
}
h1 {
text-align: center;
color: #008080;
font-size: 2.5em;
margin-bottom: 40px;
}
.spot-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
max-width: 1000px;
margin: auto;
}
.spot-card {
background-color: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 0 15px rgba(0, 128, 128, 0.15);
transition: transform 0.3s ease;
}
.spot-card:hover {
transform: translateY(-5px);
}
.spot-image {
width: 100%;
height: 200px;
object-fit: cover;
}
.spot-content {
padding: 20px;
text-align: center;
}
.spot-title {
font-size: 1.5em;
color: #006666;
margin-bottom: 15px;
}
.spot-link {
background-color: #ff6f61;
color: white;
padding: 10px 20px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
display: inline-block;
}
.spot-link:hover {
background-color: #e25850;
}