﻿


body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    width: 100%; 
    height: 100%; 
    margin-left: 30px; 
    margin-right: 30px; 
    margin-bottom: 60px;
    margin-top:20px;
       
}

header {
    text-align: center;
    padding: 20px;
    background-color: #ffff00;
    color: #000000;
    border-color: green;
border-width: 2px;
border-style: solid;
border-radius: 20px;
    

}

header h1 {
	font-size: 2em;
	margin-bottom: 10px;
	margin-left: 20px;
	margin-right: 20px;
	padding-left: 20px;
}

header p {
    font-size: 1.2em;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 20px;
}

.gallery-item {
    flex-basis: calc(33.333% - 20px);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);  
    
}

               

footer {
  text-align:center;
    padding: 20px;
    background-color: #ffff00;
    color: #000000;
    border-color: green;
border-width: 2px;
border-style: solid;
border-radius: 20px;
    
 }