/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
    text-align: center;
}

.gallery-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}


a:link {	width: ;
		color:#666666;
		text-decoration:none;
		float: left;	
		background-color: #ffffff;
	}

/* Polaroid container styling */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

.polaroid {
    background-color: white;
    padding: 10px;
    width: 180px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.polaroid img {
    width: 100%;
    border-bottom: 5px solid #fff;
}

.caption {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
}

/* Add hover effect */
.polaroid:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .polaroid {
        width: 140px;
    }

    .gallery-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .polaroid {
        width: 120px;
    }

    .gallery-title {
        font-size: 1.8rem;
    }
}
