*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #000;
    display: flex;
    justify-content: space-around;
}

.lampara{
    width: 300px;
    border-bottom: 10px solid #fff;
    position: relative;
}

.cable{
    width: 2px;
    margin: auto;
    background-color: dimgray;
    height: 200px;

}

.caja{
    width: 80px;
    height: 40px;
    background-color: dimgray;
    margin: auto;
    border-radius: 30px 30px 0 0 ;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}
.luz{
    max-width: 300px;
    margin: auto;
    height: 200px;
    clip-path: polygon(40% 0,0 100%,100% 100%,60% 0);
    padding-top: 40px;
}

.l0{
    background: linear-gradient(rgba(242,104,42,1), rgba(255,255,255,.2))
}

.l1{
    background: linear-gradient(rgb(49, 242, 42,1), rgba(255,255,255,.2))
}

.l2{
    background: linear-gradient(rgb(42, 59, 242,1), rgba(255,255,255,.2))
}

.texto{
    position: absolute;
    bottom: -9px;
    font-size: 40px;
    width: 100%;
    text-align: center;
    color: rgb(35,35,35);
    letter-spacing: 3px;
}

.t0{
    text-shadow: -2px -2px 10px rgb(242,104,42) ;
}

.t1{
    text-shadow: -2px -2px 10px rgb(49, 242, 42) ;
}

.t2{
    text-shadow: -2px -2px 10px rgb(42, 59, 242) ;
}

input{
    accent-color: rgb(2,248,2);
    cursor: pointer;
}