*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
--bg:#f4f6f8;
--card:#fff;
--text:#000;
--btn:#007bff;
}

.dark {
--bg:#0f172a;
--card:#1e293b;
--text:#fff;
--btn:#38bdf8;
}

body {
background:var(--bg);
color:var(--text);
font-family:Segoe UI;
/* display:flex;
flex-direction: column;
min-height:100vh;
transition:.3s; */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transition: 2s ease;
}

.chicken{
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#back6{
    width: 50px;
     display: flex;
    align-items: center;
    justify-content: center;
}

nav{
   
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.booking-container {
background:var(--card);
display: flex;
flex-direction: column;
padding:3px;
width:350px;
border-radius:14px;
/* box-shadow:0 15px 40px rgba(0,0,0,.2); */
transition: 2s ease;
}

input,select,button {
width:100%;
padding:10px;
margin:8px 0;
border-radius:6px;
border:1px solid #ccc;
}

button {
background:var(--btn);
color:#fff;
border:none;
cursor:pointer;

}

#themeToggle {
background-color: #fff;
background: none;
cursor:pointer;
}

@media(max-width:977px){
.chicken{
  
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; 
    font-size: 20px;
    font-weight: 600;   
   
  
}    

.chicken img{
    filter: drop-shadow(2px 2px 5px rgb(27, 27, 26));
    width: 60px;
}


#themeToggle {
width: 50px;
display: flex;
align-items: center;
justify-content: center;
cursor:pointer;
border-radius: 50%;
 font-weight: 600;
    filter: drop-shadow(2px 2px 1px black);
}

.booking-container{
    
    width: 100%;
    height: 650px;
    align-items: center;
    justify-content: center;
    margin-top: 50px;

    padding: 20px;
    
    
    
    

}

#back6{
    width: 50px;
    background-color:#fff ;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    margin-left: 60px;
    fill: #62f01b;
    font-weight: 600;
    filter: drop-shadow(2px 2px 1px black);
}


}

