* {
  box-sizing: border-box;
  font-family: monospace;
  color: #DDD; }

body, html {
  margin: 0;
  padding: 0;
  height: 100%; }

table {
  border-collapse: collapse; }

a {
  text-decoration: none; }

.button-bar {
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media screen and (min-width: 850px) {
    .button-bar {
      flex-direction: row;
      justify-content: space-between; } }

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.3rem;
  padding: 0.5rem 0.8rem;
  color: #DDD;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px black solid;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px -1px rgba(0, 0, 0, 0.5);
  transition: background-color 0.5s, box-shadow 0.5s;
  margin-top: 10px; }
  .button:hover {
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.5); }
  .button:active {
    background-color: black;
    box-shadow: 0 0 1px -1px rgba(0, 0, 0, 0.5); }
  @media screen and (min-width: 850px) {
    .button {
      margin: 0px 5px; } }

.e314c-logo {
  display: flex;
  justify-content: center;
  align-items: end;
  width: 100%;
  fill: #f40058;
  margin-bottom: 20px; }
  .e314c-logo > svg {
    object-fit: contain;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 3px 1.5px rgba(20, 10, 10, 0.5));
    transition: filter 1s, fill 1.5s; }
    .e314c-logo > svg:hover {
      fill: #ff0064;
      filter: drop-shadow(0 3px 5px rgba(20, 10, 10, 0.5)); }
  .e314c-logo:after {
    display: block;
    content: "";
    padding-bottom: 35.71429%; }

.title-box {
  padding: 20px; }
  .title-box > * {
    flex: 1 1 auto; }

body {
  background-image: linear-gradient(#48F, #FF0, #F40);
  background-image: url("./imgs/VintageSunset.JPG");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  padding: 3px; }

.page {
  width: 100%;
  max-width: 500px; }
  @media screen and (min-width: 850px) {
    .page {
      width: 40%; } }

/*
.grid {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.row {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
}
*/

/*# sourceMappingURL=style.css.map */