* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "arial";
}

html {
  background-color: black;
}

body {
  margin: 0;
}

.debug, .debug * {
  outline: dotted 1px red;
}

svg {
  display: inline-block;
  margin: auto;
  width: 100%;
  height: 100%;
}

.normalpage {
  width: 85%;
  height: 400px;
  background-color: #a0a0a0;
  margin-inline: auto;
}

.card_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background-color: #a0a0a0;
  gap: 1rem;
  padding: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 66vh;
}
.card_container .card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  overflow: clip;
  justify-content: space-between;
  background-color: black;
  border-radius: 15px;
  padding: 5px;
}
.card_container .card_image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-sizing: border-box;
  -o-object-fit: fill;
     object-fit: fill;
  display: block;
}
.card_container .card .purchasebutton {
  text-align: center;
  background-color: green;
  color: white;
  font-weight: bold;
  height: auto;
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 414px) and (max-width: 1280px) {
  .card_container {
    flex-direction: row;
    flex-wrap: wrap;
    height: 455px;
  }
  .card_container .card {
    flex-shrink: 0;
    flex-grow: 0;
    width: 274px;
    height: 435px;
    margin-inline: auto;
  }
}
@media (min-width: 1280px) {
  .card_container {
    flex-direction: row;
    height: 455px;
    overflow-y: hidden;
    overflow-x: auto;
  }
  .card_container .card {
    flex-shrink: 0;
    flex-grow: 0;
    height: 100%;
    width: 274px;
  }
}

.game_devname {
  color: lightgray;
  font-style: oblique;
  font-size: 12px;
}
.game_title {
  color: white;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-style: bold;
  font-size: 20px;
}

.consoleimage {
  width: 64px;
  height: auto;
}

.a2 {
  height: 50vh;
}

#site {
  display: flex;
  flex-direction: column;
}
#site .site_body {
  position: relative;
  overflow: hidden;
  background-color: white;
  display: flex;
  flex-grow: 1;
}
#site .site_body .pagewrapper {
  display: flex;
  flex-direction: column;
  overflow-x: auto;
  width: 100%;
}

#site_header * {
  color: white;
}
#site_header {
  display: flex;
}
#site_header .header_menu {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
#site_header .header_menu .menu_element {
  border-radius: 10px;
  height: 2.5rem;
  width: 2.5rem;
  text-align: center;
  color: black;
}

#site_footer {
  color: white;
  text-align: center;
  font-weight: lighter;
}

.centered {
  margin-block: auto;
}

#site_footer, #site_header {
  color: white;
  background-color: black;
  width: 100%;
  height: 50px;
}

#siteSidebar {
  display: none;
}

#siteSidebar[expanded] {
  position: absolute;
  top: 0;
  right: 0;
  width: 25vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #a0a0a0;
  padding: 4px;
  justify-content: start;
  box-shadow: 0px 0px 10px black;
}
#siteSidebar[expanded] .stackedArray {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
#siteSidebar[expanded] .stackedArray .sidebar_element {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  background-color: color-mix(in srgb, white 35%, transparent);
  border-radius: 4px;
  height: 5vh;
}

/*table stuff*/
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

td,
th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}/*# sourceMappingURL=astyles.css.map */