@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{   
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: "Poppins", sans-serif; 
    width: 100%;
    background: linear-gradient(to right, #d36475, #f3e9d4);
}


/* .about-us-section {
    background-image: url('../Images/about.png');  Path to your background image 
    background-size: cover;    Ensure the image covers the entire section 
    background-repeat: no-repeat;    Prevent the image from repeating 
    background-position: center;    Center the image within the section 
    padding: 15px;    Optional: Add padding for better spacing 
    color: black;    Optional: Change text color if needed 
} */




h1{
    color: rgb(48, 45, 45);
}

iframe{
    width: 70%;
    height: 500px;
    filter:invert(100%);
}

h2{
    color: black;
}

.margin {
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px; /* Adjust this based on your design */
    text-align: justify;  /* Optional: Justify text for even alignment */
}

form {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
}

input.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
}

button.btn {
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

button.btn:hover {
    background-color: #a11d05;
    color: white;
}

