body {
    font-family: Arial, sans-serif;
   
    margin: 0;
    
    
    list-style: none;
}

main{
    min-height: 80lvh;

}


.banner {
    
    color: #333;
    text-align: center;
    padding: 3rem 0;
}

.banner .btn {
    background-color: #196c04;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
}
.add-child{
    background-color: #196c04;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    width: clamp(100px, 20%, 180px);
    
}
.about, .features, .stats {
    padding: 2rem 0;
}

main .container {
    max-width: 1200px;
    margin: 2rem  auto;
    
}
.container{
    width: 80%;
    padding:  1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    color: #333;
    text-align: center;
}
.feature {
    margin-bottom: 1rem;
}

form {
    width: 70%;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f4f4f4;
    border: 2px solid #196c04;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #333;
}

form label {
    display: block;
    margin-bottom: 1rem;
    font-weight: bold;
}

form label input {
    width: 80%;
    padding: 0.5rem;
    margin-top: 0.3rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form label input:focus {
    border-color: #196c04;
    box-shadow: 0 0 5px rgba(25, 108, 4, 0.5);
    outline: none;
}

form button {
    display: inline-block;
    background-color: #196c04;
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

form button:hover {
    background-color: #155704;
    transform: translateY(-2px);
}

form button:active {
    background-color: #0f4203;
    transform: translateY(0);
}

form input::placeholder {
    color: #aaa;
    font-size: 0.9rem;
}
label select {
    width: 80%;
}

a{
    color: #155704;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #0f4203;
    text-decoration-line: underline;
}