* {
  box-sizing: border-box;
  background-color: #002b36;
  font-family: "Ubuntu", sans-serif;
}

main {
}

.mute {
  position: absolute;
  z-index: 200000;
  left: 10px;
  top: 650px;
  opacity: 0;
  transition: all 0.2s ease-in 0.2s;
  margin: 2px 2px 2px 0;
  float: right;
  width: 200px;
  height: 30px;
  background: #c0c0c0;
  border-width: 1px;
  border-color: #ffffff #808080 #808080 #ffffff;
  padding: 0;
  font-size: 9px;
  font-weight: bold;
  font-family: Tahoma;
  text-align: center;
}

.outermost {
  display: flex;
  opacity: 0;
  transition: all 1s ease-in 1s;
}

.fadeIn {
  opacity: 1;
}

.tetris-board {
  display: flex;
  flex-wrap: wrap;
  width: 200px;
}

body {
  position: relative;
  overflow: hidden;
}

.border {
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 15px;
  font-weight: 900;
  background: linear-gradient(
    164deg,
    rgba(201, 0, 255, 1) 0%,
    rgba(47, 141, 181, 1) 45%,
    rgba(17, 158, 7, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.threeWrap {
  display: flex;
  flex-direction: row;
  margin-left: auto;
  margin-right: auto;
  margin-top: 200px;
  position: relative;
}

.statusBorder {
  display: flex;
  flex-direction: row;
  margin: auto;
}

.status-display {
  position: absolute;
  top: 37%;
  left: 18%;
}

p {
  font-size: 40px;
  color: rgba(17, 158, 7, 1);
  margin: 0;
  padding: 10px;
}

.gameWrapper {
  position: absolute;
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  top: 70px;
  height: 400px;
  /* border: 1px solid black; */
  z-index: 100;
}

.square {
  height: 20px;
  width: 20px;
}

.block {
  background-color: darkred;
}

.blue {
  background-color: rgba(0, 0, 255, 0.4);
}

.orange {
  background-color: rgba(225, 165, 0, 0.4);
}

.green {
  background-color: rgba(0, 128, 0, 0.4);
}

.red {
  background-color: rgba(255, 0, 0, 0.4);
}

.purple {
  background-color: rgba(128, 0, 128, 0.4);
}

.yellow {
  background-color: rgba(255, 255, 0, 0.4);
}

.cyan {
  background-color: rgba(0, 255, 255, 0.4);
}

.shake {
  animation: shake 0.5s;
  animation-iteration-count: 1s;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

.slide-in-right {
  -webkit-animation: slide-in-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 1s;
}

@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-left {
  -webkit-animation: slide-in-left 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-left 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 1s;
}

@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.gameoverCow {
  font-family: "Ubuntu", sans-serif;
  font-size: 30px;
  font-weight: bold;
  background-color: ;
  height: 4000px;
  transition: background 2s ease;
  position: relative;
  top: 10px;
  z-index: 100;
  top: -1280px;
}

.gameoverCowGraphic {
  background: linear-gradient(
    164deg,
    rgba(180, 0, 6, 1) 0%,
    rgba(107, 100, 10, 1) 45%,
    rgba(17, 158, 7, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cow {
  font-family: "Ubuntu", sans-serif;
  font-size: 40px;
  font-weight: bold;
  background: rgba(0, 0, 0, 1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 2s ease;
}

.colourChange {
  background: linear-gradient(
    164deg,
    rgba(201, 0, 255, 1) 0%,
    rgba(47, 141, 181, 1) 45%,
    rgba(17, 158, 7, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.begin-buttons button {
  /*position:absolute;
  right:3px;
  top:3px;*/
  margin: 2px 2px 2px 0;
  float: right;
  width: 200px;
  height: 30px;
  background: #c0c0c0;
  border-width: 1px;
  border-color: #ffffff #808080 #808080 #ffffff;
  padding: 0;
  font-size: 9px;
  font-weight: bold;
  font-family: Tahoma;
  text-align: center;
  z-index: 10000;
}

.slide-out-bottom {
  -webkit-animation: slide-out-bottom 3s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: slide-out-bottom 3s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation-delay: 1s;
}

@-webkit-keyframes slide-out-bottom {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
}

@keyframes slide-out-bottom {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
}

.tetris-graphic {
  font-family: "Ubuntu", sans-serif;
  font-size: 40px;
  font-weight: bold;
}

.tetris-into {
  position: absolute;
  overflow: none;
  /* z-index: -10; */
  top: -10px;
  left: 1800px;
  /* left: 1600px; */
}

.slide-l-r-Out {
  -webkit-animation: slide-l-r-Out 40s;
  animation: slide-l-r-Out 40s;
}

@-webkit-keyframes slide-l-r-Out {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-10000px);
    transform: translateX(-10000px);
    opacity: 1;
  }
}

@keyframes slide-l-r-Out {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-10000px);
    transform: translateX(-10000px);
    opacity: 1;
  }
}

.tetris-graphic {
  background: linear-gradient(
    164deg,
    rgba(201, 0, 255, 1) 0%,
    rgba(47, 141, 181, 1) 45%,
    rgba(17, 158, 7, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hidden {
  display: none;
}

.restart-buttons button {
  margin: 2px 2px 2px 0;
  width: 200px;
  height: 30px;
  background: #c0c0c0;
  border-width: 1px;
  border-color: #ffffff #808080 #808080 #ffffff;
  padding: 0;
  font-size: 9px;
  font-weight: bold;
  font-family: Tahoma;
  text-align: center;
  z-index: 10000;
  position: absolute;
  top: 690px;
  left: 1000px;
}

.fadeInBtn {
  -webkit-animation-name: fadeInBtn;
  animation-name: fadeInBtn;
}
