body {
  font-family: Consolas, "Andale Mono", monospace; 
  font-size: .8rem; 
  padding: 1em; 
  background: #121212; 
  color: rgba(218,171,59) 
}

input, button {
  margin: 0.5em 0;
  padding: 0.5em;

}

#status {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.2rem;
  column-gap: 1rem;
  justify-content: center;
}

.result, .status { 
  /* width: 300px;  
  flex: 1 1 300px; /* Grow/shrink, min width 300px */
  /* display: flex;
  flex-direction: column;
  justify-content: space-between;  */
  flex-basis: max(0px, (500px - 100vw)*1000);
  /* flex-basis: max(0px, (3300px - 100vw)*1000); */
  flex-grow: 1;  
  margin: 0 auto;
  padding: 1rem;
  
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 12px;
  box-shadow: rgba(127, 127, 127, 0.24) 0px 3px 8px;
  text-align: center;
  /* box-shadow: 0 4px 12px rgba(127,127,127,0.3); */
}

.status img {
  margin-left: auto;
  margin-right: auto;
  width: 600px;
  height: 600px;
  @media screen and (max-width: 1300px) {
    width: 600px;
    height: 600px;
    margin: 0 auto;
  }
}

.status .inner-wrapper {
  max-width: 300px;
  margin: 0 auto;
  text-align: left;
}

.img-container {
  height: 400px;
  width: 400px;
  /* background-size: 25%; */
  margin: 0 auto;
  background-size: cover !important;
}

a:link, a:visited {
  color: #fff;
  font-weight: normal;
  text-decoration: underline;
}

a:hover, a:active {
  color: rgba(218,171,59);
}
