@font-face {
    font-family: heartfont;
    src: url(heartfont.ttf);
}
* {
    box-sizing: border-box;
    font-family: heartfont;
}

body {
    background-color:slateblue;
    cursor:grab;
    display:flex;
    font-size: 30px;
}

main {
    display:flex;
}
ul { 
    list-style-type: none; 
    margin: 0; 
    padding: 0; 
    margin-bottom: 10px; 
}
li { 
    margin: 5px; 
    padding: 5px; 
    width: 150px; 
}

.opinion {
    width:40vw;
    height:50vh;
    position:fixed;
    top: 30px;
    left:30px;
    flex-direction: row;
}

.options {
    width: 1200px;
    height:4000px;
    position:relative;
    top: 30px;
    left:300px;
    flex-direction: row;
    column-count:3;
}

.draggable {
    width:200px;
    color:aquamarine;
}