h1 {
    font-size:90px;
    font-weight:bold;
    line-height:1;
}
button {
    cursor:pointer;
}

.js-modal-trigger {
    position:absolute;
    bottom:0;
    right:50px;
    border-radius:5px 5px 0 0;
    border-bottom:none;
    background:#485fc7;
    color:#fff;
}
.js-modal-trigger:hover {
    background:#4a4a4a;
}

button#mover,
.multiply {
    width:100px;
    height:50px;
    position:absolute;
    top:0;
    left:0;
}

button#trailer {
    width:100px;
    height:50px;
    position:absolute;
}

button#shrinker {
    width:200px;
    height:100px;
    position:absolute;
    top:0;
    left:0;
    transition:all 140ms;
    transform: scale(1);
}

button#shrinker:hover {
    transform: scale(0);
}

button#hover-hide {
    opacity:1;
}
button#hover-hide:hover {
    opacity:0;
    cursor:default !important;
}