* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-user-select: none;
}

body, html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: helvetica;
  padding: 0px;
}

#canvas {
  width: 100%;
  height: 100%;
  border: 1px solid #aaa;
}

/* necessary for hw rendered rotations?? */
svg > path {
  will-change: transform;
}

.button {
  font-family: inherit;
  outline: 0;
  background: #00CDEB;
  border-radius: 30px;
  height: 60px;
  line-height: 60px;
  font-size: 30px;
  color: white;
  padding: 0 50px;
  border: 0;
  cursor: pointer;
}

.menu {
  display: flex;
  width: 100%;
  height: 120px;
  position: absolute;
  bottom: 20px;
  left: 0;
  padding: 0 50px;
  justify-content: flex-end;
  align-items: center;
  /* pointer-events: none; */
}

.menu button {
  margin: 0 30px;
  cursor: pointer;
  outline: 0;
}

.menu button:active {
  filter: brightness(90%);
}

.try_another {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.rotate_anti_clockwise, .rotate_clockwise {
  font-size: 70px;
  width: 100px;
  background: transparent;
  border: 0;
}

.rotate_clockwise {
  right: 50px;
}

.dialog {
  display: flex;
  /* display: none; */
  position: absolute;
  top: 25%;
  left: 35%;
  width: 30%;
  height: 50%;
  background: white;
  box-shadow: 5px 5px 30px rgba(0,0,0,0.3);
  border-radius: 20px;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  font-size: 25px;
  text-align: center;
  padding: 50px;
}
.dialog b {
  display: block;
  margin: 20px;
  font-size: 40px;
}
.logo {
  height: 150px;
  width: 150px;
  background-image: url('assets/icon.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 150px;
}
.center {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.message {
  display: none;
  padding: 20px 40px;
  color: white;
  font-size: 30px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}
