@import url("https://fonts.googleapis.com/css?family=Ubuntu:400, 500,700,900");

canvas {
  font-family: 'Ubuntu', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: 'Ubuntu', sans-serif;
  user-select: none;
  background-color: #fff;
}

h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

img {
  -webkit-user-drag: none; 
  user-drag: none;        
  pointer-events: none;   
}

.info-alert {
  position: fixed;
  display: flex;
  justify-content: center;
  width: 100%;
  font-weight: 700;
  font-size: 32px;
  margin-top: 8px;
  color: rgb(255, 47, 0);
  z-index: 10;
}

.dialog {
  z-index: 10;
  position: fixed;
  display: none;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
  background-color: #00000065;
}

.dialog>.menu-card {
  width: 380px;
}

.dialog>.menu-card>p {
  margin-top: 6px;
}

#login-dialog{
  display: none;
}

#login-dialog hr {
  border: 0;
  height: 2px; 
  background-color: #7289da54;
  margin: 10px 0; 
}

#login-dialog > .menu-card{
  width: 550px;
}

#login-dialog .login-benefits {
  list-style-type: none;
  padding: 0;
  margin: 10px 0;
  text-align: left;
}

#login-dialog .login-benefits li {
  font-size: 16px;
  color: #555;
  padding: 5px 0px;
}

#login-dialog .actions {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
}

#login-dialog .actions > button  {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

#guest-button {
  background-color: #f0f0f0;
  color: #333;
}

#discord-login-button {
  background-color: #7289da;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

#close-dialog-button {
  background: #f4f4f4;
  color: #333;
}

#close-dialog-button:hover {
  background: #e2e2e2;
  transform: scale(1.05);
}

#skin-library-dialog {
  display: none;
}

#skin-library-dialog>.menu-card {
  width: fit-content;
  padding: 20px;
}

#skin-library-dialog .exit-button{
  margin: 10px;
  color: black;
  font-size: 24px;
}

#skin-tabs {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

#skin-tabs>p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 20px;  
}

#skin-tabs>p.selected {
  font-weight: 600;
  color: #ff6b6b;
}

#skin-list {
  position: relative;
  display: flex;
  margin-bottom: 10px;
  gap: 8px;
}

#skin-container{
  display: flex;
  overflow: hidden;
  gap: 7px;
  width: 700px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.skin-level-locked > img {
  filter: invert(0.75);
}

#skin-carousel-prev,
#skin-carousel-next{
  width: min-content;
  margin-bottom: 58px;
  font-size: 50px;
  z-index: 1;
  border: 2px solid #ff6b6b;
  background: transparent;
  color: #ff6b6b;
} 


#skin-carousel-prev {
  left: -25px;
}

 
#skin-carousel-next{
  right: -25px;
}

#skin-carousel-prev.end ,
#skin-carousel-next.end{
  opacity: 0.2; 
  pointer-events: none; 
}

.skin-list-item{
  padding: 0 3px 3px 3px;
  scroll-snap-align: start;
}

.skin-list-item>.skin-details {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 2px dashed rgba(0, 0, 0, 0.3);
  height: 230px;
  width: 160px;
}

.skin-list-item>.skin-details>h1 {
  position: absolute;
  top: 0;
  font-size: 22px;
  padding: 10px;
  color: rgba(0, 0, 0, 0.7);
}

.skin-list-item>.skin-details>img {
  width: 80%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid #666666;
}

.skin-list-item>button {
  margin-top: 10px;
  width: 100%;
  background-color: #ff6b6b;
  color: #ffff;
}

.skin-list-item>.skin-level-locked {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  height: 45px;
  font-size: 20px;
  font-weight: 600;
  color: #464646;
}

.skin-list-item>button{
  border: 2px #ff6b6b solid;
  color: #ff6b6b;
  background-color: transparent;
  height: 45px; 
}


.skin-list-item>button.selected {
  color: #ffff;
  background-color: #ff6b6b;
}

#account-container {
  position: relative;
  height: 100%;
}

#account-container>h1 {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.663);
  margin-top: 6px;
}

#account-button{
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 16px;
  padding: 5px ;
}

#account-button.login{
  background-color: #7289da;
  color: #ffffff;
}

#skin-preview {
  position: relative;
  height: 140px;
  width: 140px;
  border-radius: 50%;
  border: rgba(0, 0, 0, 0.307)3px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
  transition: ease-in-out 50ms;
}

#skin-preview:hover {
  transform: scale(1.015);
}

#skin-preview>img{
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

#skin-preview>div {
  position: absolute;
  left: 0;
  top: 0;
  background-color: greenyellow;
  color: #ffffff;
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  border: 2px solid rgba(0, 0, 0, 0.07);
}

#level-progression {
  position: absolute;
  margin-top: -14px;
  font-size: 12px;
}

#level-progression .progress-icon {
  color: #ffffff;
  background-color: #5bc2e4;
  font-size: 14px;
  font-weight: 700;
  right: -3px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
}

#level-progression .progress-bar {
  background-color: #5bc2e4;
  height: 15px;
}

#level-progression .progress-text {
  line-height: 15px;
}

#stats-container>div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  color: rgba(0, 0, 0, 0.663);
}
#featured {
  position: fixed;
  bottom: 15px;
  left: 15px;
  height: auto;
  width: 250px;
}

#featured a {
  display: block;
  width: 100%;
  height: 100%;
}

#featured img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.2s;
  animation: pulseRotate 2s ease-in-out infinite;
}

#featured img:hover {
  transform: scale(1.05);
}

@keyframes pulseRotate {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.05) rotate(1deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

#global-leaderboard {
  display: none;
  top: 60px;
}

@media (max-width: 1100px) {
  #global-leaderboard {
    visibility: hidden;
  }

  #featured-youtubers {
    visibility: hidden;
  }
}

#upgrade-container {
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 100px;
  right: 8px;
  width: 310px;
  z-index: 1;
  background-color: #66666675;
  color: #fff;
  padding: 8px;
  gap: 8px;
  border-radius: 3px;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

#upgrade-container>h1 {
  font-size: 24px;
  margin: 0;
}

#upgrade-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;

}

#upgrade-tabs>.tab {
  position: relative;
  display: flex;
  background-color: #00000037;
  height: 30px;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
  border: 3px solid transparent;
}

#upgrade-tabs>.tab.selected,
#upgrade-tabs>.tab.selected:hover {
  background-color: #8787877c;
  border-color: #00000029;
  font-weight: 600;
}

#upgrade-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#upgrade-list>.upgrade-item {
  position: relative;
  background-color: #00000037;
  padding: 8px;
  display: flex;
  gap: 10px;
  height: 80px;
  transition: ease-in-out 100ms;
  cursor: pointer;
  border-radius: 3px;
}

#upgrade-list>.upgrade-item.coming-soon {
  justify-content: center;
  align-items: center;
  font-size: 18px;

}

#upgrade-container .preview {
  background-color: rgba(255, 255, 255, 0.123);
  border-radius: 3px;
}

#upgrade-container .header {
  font-size: 19px;
  font-weight: 600;
}

#upgrade-container .text {
  font-size: 16px;

  line-height: 18px;
}

#upgrade-container .hotkey, #destroy-button .hotkey {
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: 6px;
  right: 8px;
  color: #f8ff77;
  letter-spacing: 1px;
}

#upgrade-container .cost {
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  bottom: 8px;
  right: 8px;
}

#destroy-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  height: 40px;
  background-color: #00000037;
  transition: ease-in-out 100ms;
  cursor: pointer;
  border-radius: inherit;
}

#upgrade-tabs>.tab:hover,
#upgrade-list>.upgrade-item:hover,
#destroy-button:hover {
  background-color: #0000006f;
  transform: scale(1.02);
}

#game-settings .slider {
  display: flex;
  position: fixed;
  top: 340px;
  height: 25px;
  background-color: rgb(97, 176, 255);
  border: 2px solid #464646;
  border-left: none;
  transition: left 0.5s ease;
  left: -80px;
  z-index: 5;
}

#game-settings .slider:hover {
  left: 0px;
}

#game-settings .slider button {
  height: 100%;
  margin: 0;
  padding: 0;
  padding-left: 8px;
  background-color: transparent;
  font-size: 18px;
  color: #fff;
}

#game-settings .slider img {
  height: 100%;
  object-fit: cover;
}

#game-settings .settings {
  display: none;
  position: fixed;
  top: 340px;
  height: 115px;
  width: 250px;
  left: 8px;
  flex-direction: column;
  background-color: #66666675;
  padding: 10px;
  border-radius: 3px;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  z-index: 5;
}

.exit-button {
  display: flex;
  position: absolute;
  right: 2px;
  top: 2px;
  background-color: transparent;
  font-size: 20px;
  color: #fff;
}

#game-settings .settings h1 {
  font-size: 26px;
  margin-bottom: 15px;
}

#game-settings .settings p {
  font-size: 20px;
}

#theme-select {
  width: 100%;
  padding: 8px 12px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #33333384;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

#theme-select:hover {
  background-color: #444444d5;
  border-color: #888;
}

#theme-select:focus {
  background-color: #444444d5;
  border-color: #aaa;
  outline: none;
}


#game-metrics {
  display: none;
  position: fixed;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.529);
  z-index: 100;
  bottom: 0;
  right: 0;
  margin: 8px;
}

.loading-overlay {
  position: fixed;
  display: flex;
  height: 100vh;
  width: 100vw;
  z-index: 99;
  background-color: #00000065;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 50px;
  font-weight: 700;
  gap: 2px;
  -webkit-text-stroke: 3px #464646;
}

@keyframes wave {
  0%, 70%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.wave-animation {
  animation-name: wave;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.chat {
  position: absolute;
  display: none;
  flex-direction: column;
  gap: 5px;
  left: 8px;
  bottom: 100px;
  background-color: #66666685;
  width: 300px;
  height: 300px;
  border-radius: 3px;
  z-index: 1000;
}

.chat>.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.chat>.header>h3 {
  margin: 10px 10px 0;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  font-size: 24px;
}

.chat>.header>.chat-move-button {
  background-color: transparent;
  border-radius: 0 0 4px 0;
  color: #ffffff;
  font-family: 'Ubuntu', sans-serif;
  width: 40px;
  font-size: 20px;
  cursor: grabbing;
}

#chat-messages {
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
  scrollbar-width: thin;
  /* For Firefox */
  scrollbar-color: #888 #f1f1f197;
  /* For Firefox */
  justify-content: end;
}

/* For WebKit browsers like Chrome and Safari */
#chat-messages::-webkit-scrollbar {
  width: 8px;
}

#chat-messages::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#chat-messages::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

#chat-messages::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.chat .message {
  display: flex;
  gap: 10px;
  padding: 5px 10px;
  font-size: 18px;
  color: #ffffff;
  text-shadow: 0px 2px 2px rgb(0 0 0 / 47%);
}

.chat .message>.name {
  font-weight: 700;
  text-wrap: nowrap;
}

.chat .message>.text {

  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.chat>.actions {
  display: flex;
  flex-direction: row;
}

.chat-message-input {
  width: 70%;
  padding: 8px;
  background-color: transparent;
  border: solid 2px #66666625;
  color: #ffffff;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  font-size: 18px;
  border-radius: 0 0 0 4px;
  font-family: 'Ubuntu', sans-serif;
  outline: none;
  border-right: none;
}

.chat-message-input::placeholder {
  color: #ffffff96;
}

.chat-button {
  flex: 1;
  background-color: transparent;
  border: solid 2px #66666625;
  border-radius: 0 0 4px 0;
  color: #ffffff;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
}

.leaderboard {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 5px;
  right: 8px;
  top: 8px;
  background-color: #66666675;
  padding: 20px;
  width: 230px;
  border-radius: 3px;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.leaderboard>h2 {
  margin: 0;
  text-align: center;
  font-size: 24px;
  margin-bottom: 5px;
  color: #ffffff;
  font-weight: 700;
}

.leaderboard>p {
  display: flex;
  margin: 0;
}

.leaderboard .rank {
  font-size: 20px;
  color: #ffffffd7;
  font-weight: 700;
}

.leaderboard .name {
  padding-left: 10px;
  font-size: 20px;
  color: #ffffffc7;
  font-weight: 700;
  cursor: pointer;
}

.leaderboard .score {
  margin-left: auto;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

.leaderboard .highlight>* {
  color: #f8ff77;
}


#resource-container {
  display: none;
  flex-direction: column;
  gap: 8px;
  position: fixed;
  top: 8px;
  left: 8px;
}

#resource-container>* {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #66666675;
  padding: 10px;
  border-radius: 3px;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
}

#resource-container>* span {
  color: #ffffffc7;
  margin-left: 10px;
  font-size: 26px;
}

#minimap-container {
  position: fixed;
  display: none;
  top: 125px;
  left: 8px;
  border-radius: 100%;
  border: 1px #66666628 solid;
}

#toolbar-container {
  position: fixed;
  display: flex;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.toolbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 0 5px;
  cursor: pointer;
  transition: ease-in-out 100ms;
}

.toolbar-item:hover {
  transform: scale(1.05);
}

.toolbar-item>.tooltip {
  font-family: 'Ubuntu', sans-serif;
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 20px;
  word-wrap: normal;
  visibility: hidden;
  width: 200px;
}

.tooltip>.tooltip-limit {
  font-size: 18px;
  font-weight: 700;
  float: right;
}

.infinity-symbol {
  font-size: 24px;
  vertical-align: middle;
}

.tooltip>.tooltip-header {
  font-size: 20px;
  font-weight: 700;
}

.tooltip>.tooltip-content {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 500;
}

.tooltip>.tooltip-cost {
  margin-top: 8px;
  font-weight: 500;
  font-size: 18px;
}

@keyframes slideDown {
  from {
    transform: translateY(-25%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#menu-container {
  position: fixed;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #00000045;
}


#menu-container>.top-right,
#menu-container>.bottom-right {
  position: fixed;
  right: 0;
  width: min-content;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 40px;
}

#menu-container>.top-right {
  top: 0;
}

#menu-container>.bottom-right {
  bottom: 0;
}

#menu-container>.top-right>a,
#menu-container>.bottom-right>a {
  font-size: 20px;
  text-decoration: none;
  color: #551a8b;
  white-space: nowrap;
}

#menu-container>.top-right>a:hover,
#menu-container>.bottom-right>a:hover {
  text-decoration: underline;
}

#menu-container>.top-right>p,
#menu-container>.bottom-right>p {
  font-weight: 900;
  font-size: 16px;
  margin: 0;
}



#menu-container>.top-left {
  position: fixed;
  left: 0;
  top: 0;
}

#menu-container #changelog {
  width: 400px;
  padding: 15px;
}

#menu-container #changelog>p {
  margin: 5px;
}

#game-title {
  animation: slideDown 0.7s ease forwards;
}

#game-title>.title {
  display: flex;
  margin: 0;
  color: #ffffff;
  margin-top: 100px;
  font-size: 120px;
  text-align: center;
  text-shadow: 0px 3px 8px rgba(0, 0, 0, 0.5);
}

#game-title>.title>span {
  color: #c4c6c6;
}

#game-title>.subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-top: 0;
  padding-left: 5px;
  color: #ffffff;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.menu-content-container {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  gap: 8px;
  z-index: 1;
  animation: slideDown 0.7s ease forwards;
}

@media (max-height: 680px) {
  #game-title>.title {
    margin-top: 50px;
    font-size: 60px;

  }

  .menu-content-container {
    margin-top: 20px;

  }
}

.progress-container {
  width: 100%;
  background-color: #c0bebe;
  border-radius: 6px;
  margin-top: 12px;
  position: relative;
  display: flex;
  align-items: center;
}

.progress-icon {
  position: absolute;
  right: 0;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-bar {
  height: 20px;
  background-color: #5be4b6;
  border-radius: inherit;
}

.progress-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 20px;
  text-align: center;
  color: white;
  z-index: 1;
  font-weight: bold;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

#patreon-progress-bar > .progress-bar{
  width: 0%; 
  animation: patreon-progress-bar-load 2s forwards;
}

@keyframes patreon-progress-bar-load {
  to {
    width: 60%;
  }
}

#menu-bottom-ad {
  height: 60px;
  display: flex;
  flex-direction: column;
}

@media (max-height: 520px) {
  #menu-bottom-ad {
    display: none;
  }
}


.menu-content {
  display: flex;
  gap: 8px;
}

.bottom-card {
  display: flex;
  height: 80px;
  justify-content: center;
  align-items: center;
}

.menu-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.player-info {
  padding: 15px;
}

.player-settings {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.player-input-container {
  display: flex;
  flex-direction: row;
  height: min-content;
  justify-content: space-between;
  gap: 6px;
}

input.player-name-input {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px;
  font-size: 18px;
  font-family: 'Ubuntu', sans-serif;
  outline: none;
}

button {
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: ease-in-out 50ms;
}

button:hover {
  transform: scale(1.03);
  transform-origin: center center; 
}


.play-button {
  width: 100px;
  height: 45px;
  background-color: #ff605f;
  color: white;
}


.settings-container>select {
  width: 100%;
  padding: 8px 4px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 400;
  outline: none;
}


.menu-header {
  font-size: 20px;
}

#gamemode-select {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 15px;
  gap: 10px;
}

#gamemode-select>.gamemode {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5be4b6;
  color: #ffffff;
  height: 45px;
  width: 100%;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: solid 3px #0000001a;
  transition: ease-in-out 50ms;
}

#gamemode-select>.gamemode.selected:hover {
  transform: scale(1.03);
}


#gamemode-select>.gamemode.selected {
  border-color: #00000040;
}


#gamemode-select>.gamemode.disabled {
  background-color: #c0bebe;
  cursor: auto;
  font-weight: 200;
}


#game-over-container {
  position: fixed;
  height: 100vh;
  width: 100vw;
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #00000045;
}

#game-over-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 120px;
  gap: 20px;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

@media (min-height: 800px) {
  #game-over-content {
    margin-bottom: 40px;
  }
}

#game-over-content>h1 {
  color: #ffffff;
  text-align: center;
  font-size: 55px;
}

#game-over-stats {
  display: flex;
  color: #ffffff;
  gap: 100px;
  font-size: 25px;
  height: 100%;
}

#game-over-content .actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}

#game-over-content .actions>button {
  height: 50px;
  width: 150px;
}