@font-face {
  font-family: adventure;
  src: url(./Thunderman.ttf);
}
:root {
  --screen: #d7fae2;
  --dark-blue: #031e33;
}

*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: adventure, sans-serif;
  background-color: #89cff0;
}

.bmo-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 100vh;
  width: 100vw;
}
.bmo-container .content {
  text-align: center;
  background-color: #67caa7;
  opacity: 1;
  height: 750px;
  width: 500px;
  box-shadow: 2px 3px 0px 2px rgb(99, 153, 117);
  border: 2px solid #075636;
  border-radius: 0.9em;
}

.header {
  font-size: 30px;
}

.bmo-grid {
  position: relative;
}

.grid-container, .empty-container {
  display: grid;
  margin: 0 auto;
  border-radius: 10px;
  width: 80%;
  height: 400px;
  margin: 1.25em auto 1em auto;
  border: 2px solid #075636;
  box-shadow: 2px 2px 2px rgb(147, 177, 141) inset;
}

.empty-container {
  background-color: var(--screen);
}

.eye {
  border-radius: 100%;
  width: 20px;
  height: 20px;
  position: absolute;
  background-color: var(--dark-blue);
}

.left-eye {
  left: 28%;
  top: 40%;
}

.right-eye {
  right: 28%;
  top: 40%;
}

.mouth {
  position: absolute;
  background-color: var(--dark-blue);
  width: 100px;
  height: 40px;
  top: 230px;
  left: 40%;
  border: 10px solid var(--dark-blue);
  border-top: 0;
  border-radius: 0 0 120px 120px/0 0 100px 100px;
  bottom: 50px;
}

.top {
  width: 80%;
  margin: 25px auto;
  padding: 10xp;
  display: flex;
  justify-content: space-between;
}

#value {
  position: relative;
  border: none;
  width: 55%;
  height: 25px;
  margin-right: 30px;
  padding: 3px;
  background-color: #174843;
  color: #fff;
  box-shadow: 2px 2px 2px rgba(8, 55, 39, 0.699) inset;
}

#change-screen {
  position: relative;
  border: none;
  background-color: #0e007a;
  width: 30px;
  height: 30px;
  right: 5px;
  top: -5px;
  box-shadow: 2px -2px 0px rgb(0, 13, 102) inset;
  border-radius: 50%;
}

.center {
  display: flex;
  justify-content: space-between;
  width: 80%;
  height: 220px;
  margin: 0 auto;
  padding: 10px;
}

.dpad {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #e8d22e;
  box-shadow: 2px 2px 0px rgb(155, 142, 0);
  width: 40px;
  height: 120px;
  top: 50px;
  left: 40px;
  margin-left: 40px;
  margin-top: -25px;
}
.dpad.dpad::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  top: 40px;
  left: -40px;
  background-color: #e8d22e;
  box-shadow: 0px -2px 0px rgb(155, 142, 0);
}
.dpad.dpad::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  top: 40px;
  left: 40px;
  background-color: #e8d22e;
  box-shadow: 2px -2px 0px rgb(155, 142, 0);
}

#default-pen, .default {
  font-family: inherit;
  position: relative;
  background: none;
  border: none;
  width: 0;
  height: 0;
  top: -60px;
  left: -30px;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 45px solid #15dad1;
  border-top: 0px solid;
  filter: drop-shadow(2px 2px 0px #2097a1);
}

.default {
  top: 0;
  left: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 35px solid #15dad1;
  border-top: 0px solid;
}

#default-pen:hover, #random-pen:hover, .color-wheel:hover, .dpad:hover, #clear-canvas:hover, #toggle-screen:hover, #change-screen:hover {
  transform: translate(1px, 1px);
  transition: all 0.1s ease-in;
}

#random-pen {
  font-family: inherit;
  position: relative;
  border-radius: 50%;
  border: none;
  width: 55px;
  height: 55px;
  bottom: -47px;
  background-color: #15d326;
  box-shadow: -2px -2px 0px #10791b inset;
}

.color-wheel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 100%;
  width: 80px;
  height: 80px;
  left: -45px;
  top: -15px;
  background-color: #e9004f;
  box-shadow: -2px -2px 0px #890335 inset;
}

#color-pen, #eraser {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% + 8px);
  width: 100%;
  opacity: 0;
}

.end {
  display: flex;
  justify-content: flex-start;
  width: 80%;
  margin: 0 auto;
  margin-top: -15px;
}

#clear-canvas, #toggle-screen {
  font-family: inherit;
  position: relative;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 10px;
  height: 25px;
  width: 105px;
  margin-right: 35px;
  padding: 5px;
  background-color: #0e007a;
  box-shadow: -2px -2px 0px rgb(0, 13, 102) inset;
}

.hidden {
  display: none;
}/*# sourceMappingURL=styles.css.map */