*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

body{
    min-height: 100vh;
    width: 100%; 
    background-image: url(./home2.jpg);
    background-size: cover ;
    background-repeat: no-repeat;
    background-position: center;
}
header{
    height: 20%;
    width: 100%;
    display: flex;
    gap: 40%;
    background-color: black;  
}

header img{
    height: 70px;
    width: 150px;
    margin-left: 40px; 
    /* background-color: black;   */
    background-color: aliceblue; 
}


nav ul{
    width: 400px;
    display: flex;
    justify-content: space-evenly;
    gap: 15%;
    /* background-color: brown; */
    margin-top: 20px;
}

nav a{
    text-decoration: none;
    color: white;
    font-weight: bolder;
}
nav li{
    list-style-type: none;
}

.welcome_text{
  font-family: 'Dancing Script', cursive;
  font-size: 38px;
  color: white;
  margin-top: 100px;
  text-align: center;
}

.Delicious_line{
    color: white;
    margin-top: 20px;
    text-align: center;
    font-size: 45px;
}

.menu{
    background-color: orange;
    color: white;
    border-radius: 50px;
    margin-left: 45%;
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

a:hover{
    text-decoration: underline;
    /* color: orange; */
}

@media (max-width: 768px){

    header{
        flex-direction: column;
        align-items: center;
        gap: 10px;
        height: auto;
        padding: 10px 0;
    }

    header img{
        margin-left: 0;
    }

    nav ul{
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    .welcome_text{
        font-size: 26px;
        margin-top: 60px;
        padding: 0 10px;
    }

    .Delicious_line{
        font-size: 30px;
        padding: 0 10px;
    }

    .menu{
        margin-left: 0;
        display: block;
        margin: 20px auto;
        padding: 10px 20px;
    }
}