
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(fonts/Raleway800.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}



body {
    /*background: #292929;*/
    background: #FFF;
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    margin: 0;

 -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;
      user-select: none;
}

.scene {
   /*margin: 50px;*/
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: stretch;
    height: 100%;
}

.wrapper {
    overflow: hidden;
    user-select: none;
    height: 100%;
    position: relative;

}

.dice {
  position: relative;
  width: 100%;
  height: 100%;
  /*background: #FEFEFE;*/
  transform: scale(1);
  transition: transform .2s ease;
  transform-origin: 50% 50%;
  //display: flex;

}
.dice.zoom {
    transform:scale(1.2);
}

.drag-container {
  //outline: 1px solid Red;
  height: 100%;
  position: relative;
}

.faces {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  //transform: scale(1.2);
  height: 100%;
  width: 100%;

}

.faces li {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    list-style: none;
    /*width: 1%;*/
    /*height: 92%;*/

    line-height: 280px;
    text-align: center;
    background: #FF8D47;
    color: #FFF;
    font-size: 50px;
    letter-spacing: 2px;
    font-weight: 800;
    font-family: 'Raleway', sans-serif;
    margin: 2%;
    padding: 0;
    border-radius: 5px;
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;
      user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;

}

.faces li img {
    margin: 20%;
    display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
