html {
    Background-color:#1b1c22;
}

body { 
    max-width:100%;
    
}

img{
	max-width:100%;
}


}
.select {
    background: black;
    color: #88ff00;
    border: inset 2px #88ff00;
    margin-left: 20px;
    padding-left: 5px;
	border-radius: 5px;
	width: 55%;
}


.choice {
    background: black;
    color: #88ff00;
    border-bottom: inset 2px #88ff00;
	width: 100%;
}

form {
	display: grid;
    grid-gap: 5px ;
}

p {
    font-size: 30px;
}

b{
	paddin-top: 5px;
    -webkit-margin-before: 5px;
    -webkit-margin-after: 5px;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
}
button {
    margin-top: 15px;
    padding: 10px 30px;
    margin: 10px;
    margin-bottom: 26px;
    color: #fff;
    background-color: #1c262f;
    border-radius: 5px;
    border: solid 0px;
    font-size: 30px;
	max-width: 75%;
    font-family: TimesNewRoman;
    transition: ease-in-out all 250ms;
    box-shadow: 0px 0px 4px 0px #000000;
}

img{
    max-width: 80%;
    max-height: 80%;
}


select{
	color: #88ff00;
	appearance: none;
	background-color: #333;
	border: none;
	padding: 0 0 0 0;
	margin: 0;
	width: 100%;
	height: 2em;
	font-family: inherit;
	font-size: inherit;
	cursor: inherit;
	line-height: inherit;
}


.select {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  position: relative;

  select,
  &::after {
    grid-area: select;
  }

  min-width: 15ch;
  max-width: 30ch;

  border: 1px solid var(--select-border);
  border-radius: 0.25em;
  padding: 0.25em 0.5em;

  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1.1;

  // Optional styles
  // remove for transparency
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);

  // Custom arrow
  &:not(.select--multiple)::after {
    content: "";
    justify-self: end;
    width: 0.8em;
    height: 0.5em;
    background-color: var(--select-arrow);
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  }
}


#result {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 20px 20px;
    background: #252f39;
    width: 650px;
    margin: auto;
    margin-top: 10%;
    padding: 2%;
    text-align: center;
    font-size: 17px;
    color: #88ff00;
    box-shadow: 0px 0px 20px 2px #88ff00;
    border-radius: 20px;
    justify-content: center;
}

#result_grid_part{
    border: inset 2px #88ff00;
    width: 200px;
    height: 200px;
}
#prev_head{
    max-height: 150px;
    max-width: 150px;
}
#prev_torso{ 
    max-height: 150px;
    max-width: 150px;
}
#prev_arm{
    max-height: 150px;
    max-width: 150px;
}
#prev_legs{
    max-height: 150px;
    max-width: 150px;
}
.OrderBox{
	color: #88ff00;
	text-align: center;
	box-shadow: inset 0px 0px 4px 0px #88ff00;
}
.ordertext{
	padding: 5px;
}

button:hover {
    color: #000;
    box-shadow: inset 0px 0px 4px 0px #000000;
    background: #88ff00;
}

button:active {
    color: #000;
    box-shadow: inset 0px 0px 10px 1px #000000;
    background: #88ff00;
}


.sidenav {
  height: 100%;
  width: 300px; 
  position: fixed; 
  z-index: 1; 
  top: 0; 
  left: 0;
  background-color: #111;
  overflow-x: hidden; 
  padding-top: 20px;
}

.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.main {
  margin-left: 160px;
  padding: 0px 10px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
