@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Poppins",sans-serif;
    
    

}
body
{
    background-image: url(homepage1.jpg);
    padding: 10px;
    .shifted-paragraph {
        font-size: 25px;
        margin-left: 250px; /* Adjust this value to shift it further or closer */
        color: white; /* Set text color to white */
        text-shadow: 
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000; /* Apply multiple shadows to create an outline */
        
          

      }
      .shifted-image {
        display: block;
        margin: 0 auto; 
          
          
          }
      
      

}


nav{
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    background: #fff;
    width: 70px;
    overflow:hidden;
    transition: width 0.2s linear;
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);

}

.food{
    text-align: center;
    display: flex;
    transition: all 0.5s ease;
    margin: 10px 0 0 10px;

}
.food img{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    

}
.food span
{
    font-weight: bold;
    padding-left: 15px;
    font-size: 18px;
    text-transform: uppercase;

}
a{
    position: relative;
    color: rgb(85, 83, 83);
    font-size: 14px;
    display: table;
    width: 300px;
    padding: 10px;
}
.fas{
    position: relative;
    width: 70px;
    height: 40px;
    top: 14px;
    font-size: 20px;
    text-align: center;
    
}
.nav-item{
    position: relative;
    top: 12px;
    margin-left: 10px;

}

a:hover{
    background: #eee;
}
nav:hover{
    width: 250px;
    transition: all 0.5s ease;
}
.logout{
    position: absolute;
    bottom: 0;
}
