@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500&family=Space+Mono:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}

body {
  background-color: #232931;
  font-family: "Josefin Sans", sans-serif;
}

.wrapper {
  height: 100vh;
  display: -webkit-box;
  display: flex;
}

.scene {
  height: 100vh;
  margin-bottom: 140vh;
}

.container {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  height: 50vh;
  width: 50vh;
  flex-shrink: 0;
  background-color: #3a4750;
  border-radius: 2vh;
  margin: auto auto 12vh;
  padding: 1vh;
}

.box {
  width: 18%;
  height: 18%;
  color: #fff;
  flex-shrink: 0;
  font-size: 3vh;
  padding: 1vh;
}

.inner {
  width: 100%;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-pack: center;
          justify-content: center;
  border-radius: 1.2vh;
  background-color: rgba(255, 255, 255, 0.1);
}

.header {
  position: absolute;
  height: 35vh;
  left: 0;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.title {
  color: #fff;
  font-size: 6vh;
  display: -webkit-box;
  display: flex;
  font-weight: 700;
  margin-bottom: 2vh;
}

.properties {
  color: #f6c90e;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  max-width: 58vh;
}

.property {
  padding: 1vh 2vh;
  background-color: rgba(246, 201, 14, 0.1);
  margin: 0.6vh;
  border-radius: 0.6vh;
  font-family: "Space Mono";
  font-size: 1.8vh;
  cursor: pointer;
}

.property--active {
  padding: 1vh 2vh;
  background-color: #f6c90e;
  color: #232931;
  margin: 0.6vh;
  border-radius: 0.6vh;
  font-family: "Space Mono";
  font-size: 1.8vh;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}