.scene{
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.scene canvas {
    width: 100%;
}

.scene .controls{
    position: absolute;
    left: 0;
    bottom: -200px;
    padding: 20px;
    box-sizing: border-box;

    transition: bottom 0.2s ease;
    display: flex;
    align-items: center;

    width: 100%;
}

.scene:hover .controls{
    bottom: 0;
}

.scene .controls .save{
    background-color: #00000070;
    padding: 5px 15px;
    margin-left: auto;
    border-radius: 10px;

    border: none;
    outline: none;
    backdrop-filter: blur(5px);
    cursor: pointer;
    color: white;
}