
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    transition: background-color 0.5s ease;
}

body:hover {
    background-color: #e1e1e1; 
}


#container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    background-color: #fff; 
    border-radius: 8px;
}


.image-container {
    text-align: center;
    margin-bottom: 30px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    background-color: #004d00;
    transition: transform 0.5s ease-in-out; 
}

.image-container img:hover {
    transform: scale(1.05); 
}


h1 {
    font-size: 3rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px; 
    text-transform: uppercase; 
}

h2 {
    font-size: 36px;
    color: #012901;
    margin-top: 30px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: color 0.5s ease; 
}

h2:hover {
    color: #004d00; 
}


p {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    line-height: 1.8;
    margin: 10px 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: color 0.5s ease, transform 0.5s ease;
}

p:hover {
    color: #333; 
    transform: translateY(-2px);
}


div {
    margin-bottom: 30px;
}

button {
    font-size: 18px;
    padding: 12px 30px;
    background-color: #4CAF50; 
    color: white; 
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.5s ease, transform 0.5s ease;
    text-align: center;
    display: block;
    margin: 30px auto; 
    font-weight: bold;
    letter-spacing: 1px;
}

button:hover {
    background-color: #45a049; 
    transform: translateY(-3px); 
}

button:active {
    transform: translateY(1px); 
}

button:focus {
    outline: none; 
}