﻿*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f4f7f2;
}

header{
background:#2e7d32;
color:white;
padding:20px;
display:flex;
justify-content:space-between;
align-items:center;
}

.hero{
text-align:center;
padding:80px 20px;
}

.btn{
background:white;
color:#2e7d32;
padding:10px 20px;
text-decoration:none;
border-radius:5px;
}

.login-box{
width:350px;
margin:100px auto;
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.2);
align:center;
}

.login-box input{
width:100%;
padding:10px;
margin:10px 0;
}

.login-box button{
width:100%;
padding:10px;
background:#2e7d32;
color:white;
border:none;
}

.record-form{
padding:20px;
display:flex;
gap:10px;
flex-wrap:wrap;
}

.record-form input{
padding:10px;
}

.record-form button{
padding:10px 20px;
background:#2e7d32;
color:white;
border:none;
}

.card{
background:white;
margin:15px;
padding:15px;
border-radius:10px;
box-shadow:0 0 5px rgba(0,0,0,0.2);
}

.card button{
background:red;
color:white;
border:none;
padding:8px;
margin-top:10px;
}.activities{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    padding:40px;
}

.activity-card{
    background:white;
    padding:30px;
    border-radius:50px;
    box-shadow:0 6px 20px rgba(0,0,0,0.1);
    transition:1.17s;
}

.activity-card:hover{
    transform:translateY(-5px);
}

.activity-card h3{
    color:#2e7d32;
    margin-bottom:10px;
}

.mission{
    background:#2e7d32;
    color:white;
    text-align:center;
    padding:50px 20px;
}

.hero{
    padding:60px 20px;
    text-align:center;
    max-width:900px;
    margin:auto;
}

.hero p{
    margin-top:15px;
    line-height:1.8;
}
h1{
	font-family:Castellar;
	font-size:56px;
	font-style:oblique;
	outline-color:aqua;
	outline-style:solid;
	outline-width:thick;
	color:fuchsia;
}

.location-section{
    padding:50px 20px;
    text-align:center;
}

.location-section h2{
    color:#2e7d32;
    margin-bottom:15px;
}

.location-section p{
    margin-bottom:20px;
    font-size:18px;
}

.map-container{
    width:100%;
    max-width:1000px;
    height:450px;
    margin:auto;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.2);
}

.map-container iframe{
    width:100%;
    height:100%;
    border:none;
}