*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: grid;
}
.navbar{
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background: #333;
flex-wrap: wrap;
}
.heading{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8em;
}
.list{
    display: flex;
    justify-content: center;
    align-items: center;
}
.list ul{
    display: flex;
list-style: none;
    align-items: center;
    justify-content: center;
}
li{
    padding: 10px;
color: white;
overflow: hidden;
position: relative;
transition: all 0.5s;
cursor: pointer;
z-index: 2;
}
a{
    text-decoration: none;
    color: white;
}
li::after{
content: '';
width: 100vw;
height: 0vh;
position: absolute;
background: darkred;
top: 0;
left: 0;
transition: all 0.5s;
z-index: -1;
}
li:hover::after{
    height: 100vh;
}
.sectionMain{
    margin-top: 30px;
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../image/imagespiza1.jfif');
width: 100%;
height: 80vh;
background-repeat: no-repeat;
mix-blend-mode: multiply;
background-size: cover;
background-position: center;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.sectionMain h1 {
    font-size: 2.9em;
color: white;
}
h3 ,
h4{
    font-size: 2em;
color: white;
}
.fromcontact{
    display: flex;
    justify-content: center;
    align-items: center;
margin-top: 30px;
}
.inputitems{
    display: flex;
    flex-direction: column;
    box-shadow: 2px 3px 2px 3px rgba(0, 0, 0, 0.2);
    padding: 50px;
width: 80vw;
gap: 40px;
}
.inputmarige{
    display: flex;
    gap: 10px;
}
input{
    height: 60px;
    width: 100%;
    padding: 10px;
    outline: none;
}
textarea{
    width: 100%;
    height: 150px;
    outline: none;
    padding: 10px;
}
button{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    font-weight: 800;
    border: none;
    background: orangered;
    color: white;
    transition: all 0.9s;
}
button:hover{
    opacity: 0.9;
}
.footer{
        display: flex;
        justify-content: space-between;
        background: #444;
        margin-top: 30px;
        height: 60vh;
        z-index: -3;
    }
    .footeritems{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    line-height: 4em;
    padding: 10px;
    color: white;
    transition: ease-in-out 0.9s ;
    }
    .footeritems h1{
        margin-top: 20px;
    }
    .footeritems p{
        padding: 10px;
cursor: pointer;
position: relative;
overflow: hidden;
    }
    .footeritems p::after{
        content: '';
        top: 2em;
        left: -1.3em;
        position: absolute;
        background: orangered;
        width: 2vw;
        height: 2vh;
        z-index: -1;
         border-top-right-radius: 20px;
         border-bottom-right-radius: 20px;
         transform: rotate(45deg);
    }
    .btns{
        display: flex;
        gap: 10px;
    }
     a{
        padding: 10px;
border: none;
height: 40px;
background: transparent;
font-weight: 700;
color: white;
border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
cursor: pointer;
}


