:root {
  --green: #6ad355;
  --green-darker: #3e9e2b;
  --red: #da2222; 
  --red-darker: #8c2929;
  --yellow: #e4c517;
  --yellow-darker: #cc9600;
  --purple: #573255;

  --card-color: #50cfe6;
  --card-color-darker: #2ea6bb;

  --bg-home: url(img/bg_home.jpg);
  --bg-game: url(img/bg_game.jpg);
  --bg-win: url(img/bg_win.jpg);
  --bg-lose: url(img/bg_lose.jpg);
}

@font-face {
  font-family: 'BoldenVan';
  src: url('font/BoldenVan.woff2') format('woff2'),
    url('font/BoldenVan.woff') format('woff'),
    url('font/BoldenVan.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Heebo';
  src: url('font/Heebo-Medium.woff') format('woff2'),
    url('font/Heebo-Medium.woff') format('woff'),
    url('font/Heebo-Medium.ttf') format('ttf');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0vw;
  padding: 0vw;
}

body{
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000;
  font-family: 'BoldenVan';
  font-size: 3vw;
  color: black;
  overflow: hidden;
  display: flex;
  justify-items: center;
  align-items: middle;
}

#canvas-container {
  width: 100%;
  height: 100%;
  background-color: #000;
  margin: auto;
}

.top-right-btns-container {
  width: auto;
  height: auto;
  position: absolute;
  top: 0vw;
  right: 0vw;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 1vw;
}

.top-right-btns-container * {
  margin-top: 2vw;
  margin-right: 2vw;
}

/* Utility classes */
.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fullSize {
  width: 100%;
  height: 100%;
  position: absolute;
}

img {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.extra-small {
  width: 1.5vw;
  height: 1.5vw;
}

.small {
  width: 2vw;
  height: 2vw;
}

.medium {
  width: 3.25vw;
  height: 3.25vw;
}

.large {
  width: 4.5vw;
  height: 4.5vw;
}

audio {
  display: none;
}

.logo {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2.5vw 3vw;
  border-bottom-right-radius: 6vw;
  background-color:rgb(187, 0, 0);
}

.logo *{
  width: 18vw;
  height: auto;
}