body{
    font-family: 'Roboto', sans-serif;
    background-color: gray;
    cursor: url('images/cursor.cur'), auto;
}

.Hammerkopf{
    position: absolute;
    width: 20%;
    top: 15%;
    left: 40%;
}

.Hakenschraube{
    position: absolute;
    width: 20%;
    top: 15%;
    left: 40%;
}
.Augenschraube{
    position: absolute;
    width: 20%;
    top: 15%;
    left: 40%;
}

.Senkkopfschraube{
    position: absolute;
    width: 18%;
    top: 15%;
    left: 40%;
}

.Linsenkopfschraube{
    position: absolute;
    width: 19%;
    top: 15%;
    left: 40%;
}

.Zylinderkopfschraube{
    position: absolute;
    width: 14%;
    top: 15%;
    left: 40%;
}

.Sechskantschraube{
    position: absolute;
    width: 20%;
    top: 15%;
    left: 40%;
}

.Flachkopfschraube{
    position: absolute;
    width: 20%;
    top: 15%;
    left: 40%;
}

.Rändelschraube{
    position: absolute;
    width: 30%;
    top: 15%;
    left: 40%;
}


.Logo {
    right: 90%;
    top: 3%;
    width: 200px;
}


.Produktbeschreibung {
  position: absolute;
  background-color: #1a1a1a;   
  color: #ffffff;   
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);   
  max-width: 800px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  top: 44%;
  left: 30%;
}

.buttonhinzu{
    position: absolute;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: Arial, sans-serif;
    cursor: url('images/cursor.cur'), auto;
}
  
.sidebar {
    height: 100%;
    width: 250px;
    position: fixed;
    top: 0;
    right: -250px;
    background: linear-gradient(180deg, #222, #444);
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease-in-out;
    padding-top: 60px;
    z-index: 1000;
    cursor: url('images/cursor.cur'), auto;
}

  
.sidebar a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 15px;
    transition: 0.3s;
    cursor: url('images/cursor.cur'), auto;
}

.sidebar a:hover {
   
    cursor: url('images/hammer.cur'), auto;
    background: rgba(255, 255, 255, 0.2);
    padding-left: 30px;
    cursor: url('images/cursor.cur'), auto;
}

  
.closebtn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    cursor: url('images/hammer.cur'), auto;
    color: #ff5757;
}

  
.openbtn {
    font-size: 20px;
    position: absolute;
    top: 7%;
    right: 2%;
    background: #222;
    color: white;
    padding: 12px 18px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: url('images/cursor.cur'), auto;
}

.openbtn:hover {
    background: #444;
}


@media (max-width: 1024px) {
    .Hammerkopf,
    .Hakenschraube,
    .Augenschraube,
    .Senkkopfschraube,
    .Linsenkopfschraube,
    .Zylinderkopfschraube,
    .Sechskantschraube,
    .Flachkopfschraube,
    .Rändelschraube {
        position: static;
        width: 80%;
        max-width: 300px;
        height: auto;
        margin: 10px auto;
        display: block;
        margin-left: 10%; 
    }

    .Produktbeschreibung {
        position: static;
        width: 90%;
        margin: 10px auto;
        padding: 15px;
        font-size: 1rem;
        text-align: center;
        transform: none;
    }

    .Logo {
        position: static;
        display: block;
        margin: 10px auto;
        width: 100px;
        height: auto;
    }

    
    .buttonhinzu {
        position: relative;
        display: block;
        margin: -30px auto 5 60%; 
        width: fit-content;
    }

}


