* {
  margin: 0;
  padding: 0;
  font-family: acumin-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
      grid-template-columns: 50% 50%;
  -ms-grid-rows: (20vh)[5];
      grid-template-rows: repeat(5, 20vh);
  height: 100vh;
}

button,
input,
optgroup,
select,
textarea,
html input[type="button"],
input[type="reset"],
input[type="submit"],
button[disabled],
html input[disabled],
button::-moz-focus-inner,
input::-moz-focus-inner,
input[type="checkbox"],
input[type="radio"],
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button,
input[type="search"],
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.selectors {
  padding: 2vh 2vw;
  font-size: calc(1vmax + 2rem);
  line-height: 1.5em;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  border-bottom: solid green 2px;
  font-size: calc(1vmax + 2rem);
  color: green;
  background-color: white;
}

.output {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  grid-row: 1 / 6;
  overflow: scroll;
  padding: 2vh 2vw;
  background-color: green;
  color: white;
}

.output div {
  margin-bottom: 3vh;
}

.time {
  -ms-grid-row: 1;
  grid-row: 1;
}

.space {
  -ms-grid-row: 2;
  grid-row: 2;
}

.money {
  -ms-grid-row: 3;
  grid-row: 3;
}

h1 {
  -ms-grid-row: 1;
  grid-row: 1;
  font-size: calc(1vmax + 2rem);
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 1vh;
}

h2 {
  font-size: calc(1vmax + 1rem);
  font-weight: 600;
  line-height: 1.5em;
  margin-top: 10px;
  margin-bottom: 1vh;
}

p {
  font-size: calc(0.5vmax + 0.8rem);
  line-height: 1.5em;
  margin-bottom: 1vh;
}

a {
  color: white;
}

a :hover {
  color: #b3b3b3;
}

a :visited {
  color: gray;
}

img {
  border: white solid 2px;
  height: 20vh;
  width: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
}

.header {
  -ms-grid-row: 1;
  grid-row: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header a {
  font-size: calc(1vmax + 2rem);
  color: #274e04;
  text-decoration: none;
}

.header a :hover {
  color: #1a3303;
}

.solo {
  border: white solid 2px;
  height: 20vh;
  width: 46vw;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 3vh;
}

#busy {
  margin-bottom: 5px;
}

.carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

ol {
  font-size: calc(0.5vmax + 0.8rem);
  line-height: 1.5em;
  padding-left: 2vw;
}

li {
  margin-bottom: 10px;
}

@media screen and (max-width: 976px) {
  body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    -ms-grid-rows: 30% 70%;
        grid-template-rows: 30% 70%;
    height: 100vh;
  }
  .output {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    overflow: scroll;
    padding: 2vh 2vw;
    background-color: green;
    color: white;
  }
  .output div {
    margin-bottom: 3vh;
  }
  img {
    border: white solid 2px;
    height: 20vh;
    width: 40vw;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: all ease-in 0.2s;
    transition: all ease-in 0.2s;
  }
  .solo {
    border: white solid 2px;
    height: 20vh;
    width: 95vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  h1 {
    -ms-grid-row: 1;
    grid-row: 1;
    padding: 2vh 2vw;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
  p {
    font-size: calc(0.5vmax + 1rem);
    line-height: 1.5em;
    margin-bottom: 1vh;
  }
}
/*# sourceMappingURL=styles.css.map */