body {
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
}

.central {
    width: 248px;
    height: 180px;
    background-color: rgba(61, 58, 58, 0.4);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 5px 5px 15px rgb(0, 139, 245);
}

#ligar {
    background-color: rgb(15, 156, 15);
    color: aliceblue;
    width: 70px;
    border-radius: 20px;
    opacity: 0.7;
}

#ligar:hover{
    background-color: rgb(15, 156, 15);
    color: aliceblue;
    width: 70px;
    border-radius: 20px;
    opacity: 1;
}

#desligar {
    background-color: red;
    color: aliceblue;
    width: 70px;
    border-radius: 20px;
    opacity: 0.7;
}

#desligar:hover{
    background-color: red;
    color: aliceblue;
    width: 70px;
    border-radius: 20px;
    opacity: 1;
}

#lamp {
    width: 100px;
}