/* Mixin: standardborder */
/* Mixin: box-size */
/* Mixin: color-set med optional lighten/darken */
/* Layout */
body {
  background-color: rgb(212, 0, 255);
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-template-rows: 1fr 1fr 1fr;
  height: 600px;
  gap: 10px;
  font-family: Arial, Helvetica, sans-serif;
}
body div {
  border-radius: 10px;
  border: 5px solid white;
}

/* Menu */
.menu {
  width: 90%;
  height: 100%;
  background-color: rgb(255, 200, 0);
  color: inherit;
  grid-row: 1/span 3;
}
.menu p {
  background-color: #ffd333;
  color: inherit;
  border: 1px solid black;
  border-radius: 3px;
  margin-left: 5px;
  width: 70%;
}

/* Middle divs */
.sub1 {
  width: 90%;
  height: 100%;
  background-color: rgb(255, 200, 0);
  color: inherit;
  justify-content: right;
}

.sub2 {
  width: 90%;
  height: 100%;
  background-color: #ffd333;
  color: inherit;
  justify-content: right;
}

/* Text */
h1 {
  margin-top: 5px;
  margin-left: 5px;
}

p {
  width: 90%;
  margin-top: 20px;
  margin-left: 4px;
}/*# sourceMappingURL=index.css.map */