header{
background:white;
padding:20px;
text-align:center;
}

header h1{
color:#1e73be;
}

nav{
margin-top:15px;
}

nav a{
text-decoration:none;
color:black;
margin:10px;
font-size:18px;
}

.hero{
background:#1e73be;
color:white;
padding:100px 20px;
text-align:center;
}

.hero h2{
font-size:40px;
}

.hero p{
font-size:20px;
}

.btn{
display:inline-block;
background:orange;
color:white;
padding:15px 25px;
text-decoration:none;
margin-top:20px;
border-radius:5px;
}

.section{
padding:50px 20px;
background:white;
margin:20px;
}

.section h2{
text-align:center;
color:#1e73be;
margin-bottom:30px;
}

.cards{
text-align:center;
}

.card{
display:inline-block;
background:#f7f7f7;
width:250px;
padding:20px;
margin:10px;
border-radius:10px;
}

.events{
background:white;
padding:20px;
margin-top:20px;
border-radius:10px;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
gap:15px;
margin-top:20px;
}

.gallery img{
width:100%;
height:180px;
object-fit:cover;
border-radius:10px;
transition:0.3s;
}

.gallery img:hover{
transform:scale(1.05);
}

form{
text-align:center;
}

input,
textarea{
width:80%;
padding:15px;
margin:10px;
border:1px solid #ccc;
border-radius:5px;
}

button{
background:#1e73be;
color:white;
padding:15px 30px;
border:none;
border-radius:5px;
}

.socials{
text-align:center;
margin-top:30px;
}

.socials a{
font-size:30px;
margin:10px;
color:#1e73be;
text-decoration:none;
}

#contact{
text-align:center;
}

#contact p{
font-size:18px;
margin:10px 0;
}

.developer{
text-align:center;
margin:20px;
font-weight:bold;
color:#555;
}

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
margin-top:20px;
}

@media (max-width:768px){
.hero h2{
font-size:28px;
}

.card{
width:90%;
}
}