* {
    box-sizing: border-box;
}

body {
    margin:0px;
    background-color:rgb(126, 143, 178);
    max-width: 100vw;
    height: 100vh;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgb(194, 253, 0);
}

.heros {
    margin:0px;
    background-color:rgb(126, 143, 178);
    max-width: 100vw;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;

    
}
p {text-align: center;}



.container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 20%;
    height: 50%;

}

.batman {
    position: relative;
    top: 100px;
    width: 450px;

}

.spiderman {
    position: relative;
    top: 100px;
    width: 350px;

}

.ironman {
    position: relative;
    top: 100px;
    width: 350px;
}

.catwoman {
    position: relative;
    top: 100px;
    width: 350px;
}

.gamora {
    position: relative;
    top: 100px;
    width: 330px;
}

button {
    padding:10px;
    border: 1px solid;
    cursor:pointer;
    background-color:thistle;
    border-radius: 5px;
    transition: background-color .2s;
}

button:hover {
    background-color:pink;
}

button:active {
    background-color:white;
}

.chair {
    width:200px;
    position:fixed;
    bottom:10px;
    right:10px;
    opacity:0;
    transition: opacity 1s;
}

.draggable {
    cursor:grab;
}

.div {
    display: block;
}



