body{
    background-image: url("../images/back\ image.jpg");
    
   background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size:cover;
    background-size: 3000px 1100px;
    background-position: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    

}
nav{
    background-color: rgb(251, 251, 251);
    box-shadow: 3px 3px 5px rgba (0,0,0,0.1);
     padding: 5px 20px;
    display: flex;
    gap: 30px;
    height: 30px;
}
nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav li{
    height: 50px;
}
nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;

}
nav a:hover{
    background-color: #b3451a;
}
nav li:first-child{
    font-size: 25px;
    font-weight: bold;
    color: #b3451a;
    margin-right: auto;
    
}
.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: -10px 0 10px rgba (0,0,0,0.1);
     padding: 5px 20px;
    display: none;
    flex-direction: column;
    gap: 30px;
    z-index: 999;

    align-items: flex-start;
    justify-content: flex-start; 
    
}
.sidebar li{
    width: 100%;
  
}
.sidebar a{
    width: 100%;
    
   
}
.menu-button{
    display: none;
}
@media( max-width:800px){
  .hideOnMobile{
    display: none;
  }  
  .menu-button{
    display: block;
  }
}
@media( max-width:400px){
  .sidebar{
    width: 100%;
    display: none;
  }  
}