#container {
    display: flex;
    width: 100%;
    height: 400px;
    overflow: hidden;
    font-family: 'FuturaBT';
    margin: 30px 0;
}

.background {
    position: absolute;
    width: 350px;
    height: 500px;
}

.background svg {
    fill: #ffccdc;
    stroke: #FF0050;
    stroke-width: 2px;
}

.background .label {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 30px;
    color: #dadfe5;
}

.box {
    position: absolute;
    width: 450px;
    /* min-width: 450px; */
    /* width: 100%; */
    height: 400px;
    margin: 0;
}

@media (max-width: 500px) {
    .box {
        width: 90%;
        left: 5%;
        height: 350px;
    }
    #container {
        height: 350px !important;
    }
}

.boxcontent {
    position: absolute;
    width: 100%;
    height: 90%;
    /* margin: 5%; */
    background-color: #f6f4fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    cursor: -webkit-grab;
    cursor: grab;
    overflow: hidden;
}

.box:last-of-type .boxcontent {
    width: 100%;
    height: 100%;
    margin: 0%;
}

.box img {
    width: 100%;
    height: 100%;
}

.like,
.nope {
    position: absolute;
    top: 35px;
    /* border: 4px solid gray; */
    padding: 7px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 2.5em;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    opacity: 0;
    height: 200px;
}

.like {
    top: calc(50% - (210px/2));
    left: calc(50% - (210px/2));
    /* position: absolute; */
    /* top: calc(50vh - (400px / 2));
    left: calc(50vw - (400px / 2));  */
    /* right: 30px; */
    /* border-color: green;
    color: green; */
    /* transform: rotate(-20deg); */
}

.nope {
    
    top: calc(50% - (210px/2));
    left: calc(50% - (210px/2));
    /* left: 30px;
    border-color: red;
    color: red;
    transform: rotate(20deg); */
}

.info {
    color: #fff;
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 30px 20px 40px 20px;
    width: 100%;
    box-sizing: border-box;
    /* text-shadow: 2px 2px 5px gray; */
    background: linear-gradient(rgba(40, 40, 40, 0) 0, rgba(0, 0, 0, 9) 85%);
}

.name {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
}