@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-color: #007767;
    height: 100vh;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}
.no_result {
    width: 700px;
    text-align: center;
    font-size: 50px;
    padding: 200px;
}
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: 80%;
    height: auto;
    left: 10%;
    top: 5vh;
    z-index: 10;
}
.scoreboard {
    float: left;
    position: absolute;
    height: 100vh;
    left: 10px;
    right: 10px;
}
.scoreboard_title {
    text-align: center;
    font-size: 70px;
    margin-bottom: 15px;
    text-shadow: 1px 2px 4px #222;
}
.item {
    height: 120px;
    background-color: #535351;
    border: 4px solid #707070;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 1px 2px 6px #000;
}
.item_icon {
    width: 90px;
    position: absolute;
    left: 16px;
    top: 16px;
}
.item_text {
    width: 100%;
    float: left;
    padding-top: 0px;
    position: relative;
    left: 148px;
    font-size: 36px;
    margin-top: 14px;
}
.item_description {
    width: 100%;
    float: left;
    padding-top: 0px;
    position: relative;
    left: 148px;
    margin-top: 3px;
    font-size: 25px;
    color: #EFC75E;
}
.item_amount {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    font-size: 22px;
    width: 168px;
    background-color: #EFC75E;
    color: #222;
}
.item_icon img {
    max-width: 90px;
}
.hourminute {
    font-size: 41px;
    margin-top: 16px;
}
.box_content {
    width: calc(100% - 534px);
    float: left;
}
.value_amount {
    position: absolute;
    right: 170px;
    top: 0;
    bottom: 0;
    text-align: center;
    font-size: 22px;
    width: 168px;
    color: #f5f5f5;
    padding-top: 40px;
    font-size: 30px;
}
.activation_type {
    position: absolute;
    right: 340px;
    top: 0;
    bottom: 0;
    text-align: center;
    font-size: 22px;
    width: 250px;
    color: #EFC75E;
    padding-top: 40px;
    font-size: 30px;
}
@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);
    }
}