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

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  overflow-y: hidden;
  background-image: url("darker_bg.png") ;
  background-repeat: repeat;
  background-size: 80px;
  image-rendering: pixelated;
  background-color: black;
}

body {
  font-family: Terminal;
  margin: 0;
  height: 100vh;
}

@font-face {
    font-family: Pixel Game;
    src: url(./pixelgame.otf);
}

@font-face {
    font-family: Terminal;
    src: url(./terminal-grotesque.ttf);
}

.btn-small {
    background-image: url("btn_small.png");
    background-size: 84px;
    -webkit-transition-duration: 0.2s;
    cursor: pointer;
}

.btn-small:hover {
    -webkit-transition-duration: 0.2s;
    transform: scale(1.1);
    transform: translateY(15px);
}

#topbar {
  color: white;
  background-color: black;
  background-image: url("bg-navs.png");
  background-repeat: repeat;
  background-size: 84px;
  justify-content: center;
  justify-items: center;
  display: flex;
  height: 84px;
}

#topbarsemi {
  justify-content: center;
  justify-items: center;
  display: flex;
}

.shopcontainer {
  position: absolute;
  bottom: 0px;
  background-image: url("darker_bg.png");
  background-repeat: repeat;
  background-size: 84px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#shop {
  margin: 8px;
  border-radius: 6px;
  background-size: cover;
  background-image: url("button_md.png");
  color: rgb(255, 255, 255);
  width: 10%;
  height: 64px;
  max-height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
}

#shop:hover {
    -webkit-transition-duration: 0.2s;
    transform: translateY(-12px);
}
