*{
    margin: 0;
    padding: 0;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background-color: beige;
    width: 100%;
    height: 100vh;
}

header {
    width: 100%;
    background-color: brown;
    padding-bottom: 5px;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-right: 30px;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    color: beige;
    font-size: 20px;
}

.logo{
    width: 150px;
    margin-left: 20px;
    padding-top: 20px;
}

.pizzas{
    width: 600px;
    margin-top: 50px;
}

span{
    color: brown;
}

main{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

button{
    font-size: 20px;
    border-radius: 25px;
    height: 50px;
    width: 160px;
    margin-top: 30px;
    cursor: pointer;
}

.order{
 background-color: brown;
 color: beige;
 border: none;
 margin-right: 10px;
}

.book{
 border:2px solid brown;
 background-color: beige;
}

.book a{
    color: black;
}

h1{
    font-size: 50px;
    font-weight: 300;
}

.linea{
 background-color: brown;
 height: 450px;
 width: 4px;
 border-radius: 40px;
 margin-top: 20px;
}

.princ{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.menu{
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.pizza{
    width: 220px;
    background-color: beige;
    border-radius: 40px;
}

.productos{
    margin: 40px;
    padding:9px;
    border-radius: 20px;
    cursor: pointer;
    border: 2px solid brown;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 40%;
}

.price:hover{
    transform: scale(1.1);
    transition: ease-in-out 0.1s;
}

figcaption{
    text-align: center;
    font-size: 17px;
    margin-top: 5px;
    color:brown;
    font-weight: bolder;
}

.price{
    color:beige;
    margin-top: 5px;
    border-radius: 20px;
    cursor: pointer;
    background-color: #a52a2a;
    width: 100px;
    text-align: center;
    font-size: 17px;
    border: none;
    height: 30px;
    margin-bottom: 5px;
}

p{
    margin:5px 0 5px 0;
}

.tit{
    color: brown;
    position: relative;
    top: 25px;
    left: 580px;
    font-size: 50px;
    width: 100px;

}

.size{
    position: relative;
    top:25px;
    text-align: center;
}

footer{
    width: 100%;
    height: 20%;
    background-color: rgb(26, 26, 26);
    display: flex;
    color: beige;
    justify-content: space-around;
    align-items: center;
    font-size: 18px;
    margin-top: 23px;
}

i{
    cursor: pointer;
    font-size: 22px;
}

.icons{
    display: flex;
    width: 150px;
    justify-content: space-around  ;
    margin-top: 10px;
}

.sig{
    margin-left: 10px;
    margin-top: 20px;
}

form{
    display: flex;
    flex-direction: column;
}


.line{
    width: 260px;
    height: 3px;
    background-color: brown;
}

.contacto{
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    margin-bottom: 90px;
}

.con{
    width: 500px;
}

.main3{
    display: flex;
    justify-content: space-evenly;
}

.texto{
    margin: 20px 0 20px 0;
    font-size: 18px;
}

input{
    width: 400px;
    margin-bottom: 20px;
    height: 40px;
    border-style:solid;
    border-color: brown;
    border-radius: 20px;
    padding: 0 0 0 20px;
    font-size: 18px;
}

input::placeholder{
   color: black;
}

textarea{
    width: 410px;
    margin-bottom: 20px;
    height: 30px;
    border-style:solid;
    border-color: brown;
    border-radius: 20px;
    padding: 15px 0 0 15px;
    border-width: 2px;
    font-size: 18px;
}

textarea::placeholder{
    color: black;
}

.nomb{
    margin-top: 20px; 
}

.enviar{
    width: 150px;
    height: 40px;
    margin-top: 0;
    font-size: 18px;
   margin-left: 140px;
   border: none;
   cursor: pointer;
   background-color: #a52a2a;
   color: beige;
}