@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;300;400;700&display=swap');

body {
    margin: 0px;
    color: #fff;
    font-family: 'Roboto Slab', serif;
    background-image: url("../images/bg.png");
    background-color: #cccccc;
    height: 100vh;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}
.no_result {
    width: 700px;
    text-align: center;
    font-size: 50px;
    padding: 200px;
}

.left_carlsberg {
    position: absolute;
    left: calc(50% - 750px);
    top: calc(50vh - (567px/2.5));
    width: 368px;
    height: 567px;
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}
.right_carlsberg {
    position: absolute;
    right: calc(50% - 750px);
    top: calc(50vh - (567px/2.5));
    width: 368px;
    height: 567px;
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}
button {
    margin-bottom: 10px;
    display: block;
  }
canvas#custom_canvas {
    width: 100%;
    position: fixed;
    z-index: 100;
    height: 100vh;
    top: 0;
}
.logo {
    width: 233px;
    position: fixed;
    right: 60px;
    bottom: 45px;
}
.scoreboard_container {
    position: fixed;
    width: 1100px;
    height: 750px;
    left: calc(50% - (1100px/2));
    top: calc(50vh - (750px/2));
    z-index: 10;
}
.scoreboard {
    float: left;
    background-color: #222;
    border: 10px solid #706F6A;
    box-shadow: 1px 2px 6px #000;
    padding-bottom: 30px;
}
.scoreboard_title {
    text-align: center;
    font-size: 70px;
}
.item {
    width: calc(100% - 58px);
    margin: 25px;
    margin-bottom: 0px;
    float: left;
    background-color: #535351;
    border: 4px solid #707070;
}
.item_icon {
    width: 90px;
    float: left;
    padding: 20px;
    padding-top: 0px;
}
.item_text {
    width: 562px;
    float: left;
}
.item_amount {
    width: 215px;
    float: right;
}
.text {
    padding: 20px;
    margin-top: 9px;
    font-size: 44px;
}
.label {
    margin: 20px;
    text-align: center;
    padding: 20px;
    font-size: 25px;
}
.gold .label {
    background-color: #EFC75E;
    border: 3px solid #D7B354;
    color: #000;
}
.silver .label {
    background-color: #E4E7E7;
    border: 3px solid #CDCFCF;
    color: #000;
}
.bronze .label {
    background-color: #ED9D5D;
    border: 3px solid #D58D54;
    color: #000;
}
.dark .label {
    background-color: #2B2C28;
    border: 3px solid #2B2C28;
    color: #fff;
}
.description {
    font-size: 30px;
    margin-left: 10px;
}
.gold .description {
    color: #EFC75E;
}
.silver .description {
    color: #E4E7E7;
}
.bronze .description {
    color: #ED9D5D;
}
.dark .description {    
    color: #2B2C28;
}
.item_icon img {
    max-width: 90px;
}

@keyframes shake {
    10%, 90% {
      transform: translate3d(-1px, 0, 0);
    }
    
    20%, 80% {
      transform: translate3d(2px, 0, 0);
    }
  
    30%, 50%, 70% {
      transform: translate3d(-4px, 0, 0);
    }
  
    40%, 60% {
      transform: translate3d(4px, 0, 0);
    }
}