html,body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    z-index: 1000;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

.navbar a:hover {
    text-decoration: underline;
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding-top: 100px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px; 
}

.image-item img {
    width: 120%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 4px ;
    transition: transform 0.3s ease;
}

.image-item img:hover {
    transform: scale(1.25);
}

.text-image{
	background: rgba(0, 0, 0, 0);
    z-index: 1;
    position: relative;
    text-align: center;
	margin:auto;
	bottom:13%;
    color: white;
    opacity: 50%;
    width: 80%;
    
}

p{
	background:black;
	position:relative;
	text-align:center;
	left:20%;
	bottom:0;
	top:100%;
	padding:auto;
	margin:auto;
	color:yellow;
	opacity:100%;
	width:80%;
}

a{
	color:white;
	text-decoration:none;
}
