.house {    
    width: 300px;
    height: 300px;
    border: 2px solid black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.floor {
    width: 90px;
    height: 98px;
    border-top: 1px solid chocolate;
    background-image: url(assets/backgr-floors.jpg);
    background-size: 200px;
}
.heightFloor {
    width: 98px;
    height: 98px;
    border-right: 2px dashed red;
    border-left: 2px dashed darkblue;
}
.elevator {
    width: 60px;
    height: 80px;
    margin: 0 auto;
    border: 1px double rosybrown;
    border-radius: 10px;
    background: linear-gradient(205deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%); 

}
button {
    border-radius: 50%;
    background-color: hotpink;
}
button:hover {
    background: linear-gradient(205deg, rgba(131,58,180,1) 0%, rgba(29,253,241,1) 50%, rgba(252,176,69,1) 100%);
}
button:active {
    background:greenyellow
}
.florNum {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: hotpink;
    font-size: 20px;
    
}
audio {
    height: 30px;
    width: 300px;
}
img {
    height: 50px;

}

.house {
    background-color: black;
}

.here {
    background-color: greenyellow;
}
