@font-face {
  font-family: "Bombard";
  src: url("./fonts/bombard.woff2") format("woff2"), url("./fonts/bombard.woff") format("woff"), url("./fonts/bombard.ttf") format("truetype");
}

html,
body {
  height: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

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

body {
  margin: 0;
  font-family: "Bombard", Arial, sans-serif;
  color: #ffffff;
  background-color: hsl(240, 18%, 15%);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.container {
  width: 100%;
  margin: 60px auto;
  padding: 0 16px;

  @media (min-width: 576px) {
    max-width: 540px;
  }

  @media (min-width: 768px) {
    max-width: 720px;
  }

  @media (min-width: 992px) {
    max-width: 960px;
  }

  @media (min-width: 1200px) {
    max-width: 1140px;
  }
}

.locked {
  cursor: pointer;
  pointer-events: auto;
}

.unlocked {
  background-color: #6c5b33;
  border-color: #6c5b33;
  outline: #e2e15e 2px solid;
  outline-offset: -3px;
  cursor: pointer;
  pointer-events: auto;
}

.rorr-button {
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  background-color: #425161;
  border: 1px solid #87888b;
  padding: 10px 15px;
  box-shadow: inset 0 0 3px 2px #536678;
  text-shadow: 0px 1px black;
  margin-right: 1em;
}
.rorr-button:focus {
  outline: 0;
}
.rorr-button:hover {
  background-color: #b2b57c;
  box-shadow: inset 0 0 3px 2px #dcde9a;
}
.rorr-button:hover:before {
  content: "";
  cursor: pointer;
  position: absolute;
  top: -8px;
  left: -8px;
  bottom: -8px;
  right: -8px;
  border: 3px solid #ffffff;
  animation: constrict 0.1s linear;
}
@keyframes constrict {
  0% {
    top: -12px;
    left: -20px;
    bottom: -12px;
    right: -20px;
  }
  to {
    top: -8px;
    left: -8px;
    bottom: -8px;
    right: -8px;
  }
}
.rorr-button:active {
  background-color: #989c59;
  box-shadow: inset 0 0 3px 2px #dcde9a;
}

.slot-grid {
  display: flex;
  margin-bottom: 1rem;
  border: 4px solid hsl(236, 10%, 23%);
  padding: 1em;
  flex-wrap: wrap;
  background-color: hsl(236, 12%, 23%);
}

.slot {
  position: relative;
  display: grid;
  flex: 1 0 33%;
  grid-template-columns: 84px 1fr;
  padding: 0;
  margin: 0;
  background-color: #28333d;
  border: 2px solid #33404d;
  color: #fff;
  text-align: left;
  align-items: center;
  text-shadow: 0px 1px black;
}

.slot p {
  user-select: none;
}
