.my-3d-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* Hauptfarbe */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 5px #0056b3; /* Dunklere Farbe für den Schatten, erzeugt 3D-Tiefe */
    transition: all 0.5s ease;
}
.my-3d-button:hover {
    /*background-color: #0056b3;
    box-shadow: 0 3px #004085; /* Schatten wird kürzer beim Hover */
    transform: translateY(5px); /* Button bewegt sich nach unten */
}
