*
body
{
    margin: 0;
    padding: 0;
    background-image: url(images/banner.png); 
    background-size: cover;
    background-position: top;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
.logo {
	position: fixed;
    top: 20px;
	left: 20px;
	border-radius: 20%;
    overflow:hidden
}
.logo img{
   height: 60px; 
}
    
.Menu {
    background-color: rgb(110, 152, 156,0.7);
    background-blend-mode:inherit;
    opacity: 0.9;
    text-align: center;
}
.Menu ul
{
    display: inline-flex;
    list-style: none;
    color: beige;
}
.Menu ul li
{
    width: 120px;
    margin: 10px;
    padding: 10px;
}
.Menu ul li a
{
color: floralwhite;
text-decoration:none;
font-size: 16px;
}
.home{
   width: 90%;
   color: rgb(0, 0, 0);
   position:fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   text-align: center;
}
.services{
    background-color: #f5f2f2;
    padding: 50px;
    text-align: center;
}
.services h3{
    font-size: 30px;
    margin-bottom: 30px;
    color: #333333;
    font-weight: bold;
    letter-spacing: 2px;
}
.services ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.services li {
    margin: 20px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
    flex: 1;
    min-width: 250px;
}
.services li:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
input[type="text"],input[type="email"],textarea {
    width: 35%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}
    
input[type="submit"] {
    background-color: #f6d365;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
input[type="submit"]:hover {
    background-color: #f8e08e;
}
.login {
    background-color: #f2f2f2;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 400px;
    padding: 30px;
    text-align: center;
}    
.login label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #3e3e3e;
    text-align: left;
}
.login input[type=text],.login input[type=password] {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
}
.login input[type=submit] {
    background-color: #FF8C00;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    color: #fff;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}
.login input[type=submit]:hover {
    background-color: #FFA500;
}