html{
    min-height: 100%;
}
body{
    margin:0;
    padding: 0;
    background-image: url("../imgs/storebackground.jpg");
    background-color: rgba(0, 0, 0, 0.5);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-blend-mode: overlay;
    min-height: 100%;
}
.sidebar{
    margin: 0;
    padding: 0;
    height: 100%;
    width: 12rem;
    position: absolute;
    background-color: black;
    color: white;
    transition: 0.5s ease;
    transform: translateX(-300px);
    word-wrap: break-word;
    z-index: 1;
    bottom: 0;
    
}
.sidebar h1{
    margin: 10%;
    font-size: 24px;
    color: white;
    font-family: "Space Grotesk", serif;
    font-optical-sizing: auto;
    font-weight: 420;
    font-style: normal;
}

.sidebar ul li{
    list-style: none;
}

.sidebar ul li a{
    list-style: none;
    font-size: 16px;
  font-family: "Space Grotesk", serif;
  font-optical-sizing: auto;
  font-weight: 420;
  font-style: normal;
    margin: 10%;
    margin-right: 25%

}
.sidebar a:hover{
color:#BC2E2C;
}
.togglebutton{
    display: none;
    visibility: hidden;
    -webkit-appearance-: none;
}


.toggle{
    position: fixed;
    height: 30px;
    width: 30px;
    z-index: 2;
    cursor: pointer;
    left: 13px;
    top: 125px
    
}
.togglebutton:checked ~ .sidebar{
    transform: translateX(0px);
    }

section{
    padding: 0 12%;
}