@media only screen and (min-width: 700px) {
.about {
    display: grid;
    grid-template-rows: [header] 1fr [spacer] 1fr [body] 2fr [extra] auto [c] auto [footer] 60px;
    grid-template-columns: [menu] 31vh [info] 2fr [side] 1fr;
    grid-template-areas:
        "logo tabs pic"
        "menu text pic"
        "menu text stage"
        ". text team"
        "credit text rib"
        "theme text rib";
    gap: 10px;
    margin: 1.5em 10em;
    padding: 1em;
    width: fit-content;
    height: 88vh;
    border: var(--b-bord);
    background-color: var(--b-bg);
    background-image: var(--b-bg-img);
    border-radius: 25px;
}

.credit, .tabs, .text, .pic, .team, .rib {
    border: var(--c-bord);
    background-color: var(--c-bg);
    border-radius: 25px;
}

.logo {
    grid-column: menu;
    grid-row: header;
    grid-area: logo;
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logoimg {
    width: 200px;
    height: auto;
    margin: auto;
}

.menu {
    grid-column: menu;
    grid-row: body;
    grid-area: menu;
    padding: 1em;
    text-align: center;
}

.stage {
    grid-column: side;
    grid-row: extra;
    grid-area: stage;
    padding: 1em;
    width: 70%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.pic {
    grid-column: side;
    grid-row: header;
    grid-area: pic;
    padding: 1em;
    height: fit-content;
}

.team {
    grid-column: side;
    grid-row: body;
    grid-area: team;
    padding: 1em;
    overflow-y: scroll;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 70%;
    margin: auto;
}

.mon {
    width: 50px;
    height: 50px;
    background-color: var(--b-bg);
    border: var(--b-bord);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    margin: 0.2em;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
    image-rendering: pixelated;
}

.room {
    width: 100%;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
    image-rendering: pixelated;
}

.rib {
    grid-column: info;
    grid-row: footer;
    grid-area: rib;
    padding: 1em;
}

.tabs {
    font-family: 'Pixeloid';
    font-size: 20px;
    grid-column: info;
    grid-row: header;
    grid-area: tabs;
    padding: 1em;
    text-align: center;
}

.text {
    grid-column: info;
    grid-row: body;
    grid-area: text;
    padding: 1em;
    overflow-y: scroll;
}

.abt {
    font-family: 'Pixeloid';
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.abtinfo {
    display: none;
}

#Intro {
    display: block;
}

.btn2 {
  box-shadow: inset -1px -1px var(--b-bg), inset 1px 1px var(--btn-clr), inset -2px -2px grey,
    inset 2px 0px var(--b-bg);
  border-radius: 0px;
  background: var(--bc);
  display: inline-block;
  width: auto;
  text-decoration: none;
  padding: 10px;
  line-height: 1;
}

.btn2:active {
  box-shadow: inset -1px -1px var(--b-bg), inset 1px 1px var(--btn-clr), inset -2px -2px grey,
    inset 2px 0px var(--b-bg);
  border-radius: 0px;
  background: var(--btn-h1);
  display: inline-block;
  width: auto;
  text-decoration: none;
  padding: 10px;
  line-height: 1;
}

.item {
    display: flex;
    flex-direction: row;
    border-radius: 25px;
    width: 98%;
    padding: 0.5em;
    align-items: center;
}

.item:hover {
    background: var(--b-bg);
    background: linear-gradient(105deg,var(--btn-h2) 0%, var(--btn-h2) 85%, var(--bc) 85%);
    color: #ffffff;
}

.item:hover .pxl {
    background-color: #ffffff;
    border-radius: 25px;
}

.pxl {
    align-self: flex-start;
    margin-right: 10px;
}

.quan {
    margin-left: auto;
    padding-right: 1em;
}

}