body {
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

h1 {
  color: #e63946;
  margin: 0;
}

p {
  margin: 0;
}

.viewport {
    position: relative;

    width: 100vw;
    height: 100vh;

    overflow: hidden;
}

.scene {
    position: absolute;

    width: 1920px;
    height: 1080px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%)  scale(1.40);
}

.background {
    position: absolute;
    inset: 0;

    width: 1920px;
    height: 1080px;
}

.board {
    position: absolute;
    text-shadow: 2px 2px 3px #424242;
    left: 809px;
    top: 412px;
    margin: 2px;
    width: 160px;
    height: 227px;
    overflow: auto;
    transform: scale(0.7);
    z-index: 2;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

.board::-webkit-scrollbar {
  display: none;
}

@media (max-width: 500px) {
  .scene {
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%)  scale(1);    
  }
}

.board-content {
  gap: 10px;
  display: grid;
}

/* Normal website */
.content {
    position: absolute;
    inset: 0;

    pointer-events: none; /* let clicks pass through */
}

.content > * {
    pointer-events: auto;
}

.drawer {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    height: 60vh;

    background: rgba(25, 25, 30, 0.95);
    backdrop-filter: blur(14px);

    color: white;

    transform: translateY(100vh);

    border-radius: 24px 24px 0 0;
}

.drawer-handle {
    width: 60px;
    height: 6px;

    background: #888;

    border-radius: 999px;

    margin: 12px auto 20px;
}

.test-class {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 40px;
  position: absolute;
  width: 844px;
  height: 289px;
  left: 79px;
  top: 212px;
}

#index-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: 100px 150px 200px 40px 150px;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}

.box-style {
	border: 3px ridge #700C0C;
	overflow: hidden;
	box-shadow: 0 1px 1px 1px #000;
	background-color: #6a4b4b;
}

.section-tab {
	text-align: left;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	border-right: 2px solid var(--dk-color);
	border-bottom: 3px solid var(--dk-color);
	padding: 1px;
	background-color: var(--mid-color);
	overflow: hidden;
}

button {
  background-color: #457b9d;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 2px 2px 3px #424242;
}

button:hover {
  background-color: #1d3557;
}
