*,
:after,
:before {
    box-sizing: border-box;
}
html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(20, 20, 31, 0);
}
::-moz-selection {
    background: #f7c46c;
    color: #363642;
    text-shadow: none;
}
::selection {
    background: #f7c46c;
    color: #363642;
    text-shadow: none;
}
body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Fira Sans, Helvetica Neue, Apple Color Emoji, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #363642;
    text-align: left;
    background-color: #f6f7f9;
}
@media (min-width: 768px) {
    body {
        font-size: 0.875rem;
    }
}
.text-center {
    text-align: center !important;
}
.mt-3, .my-3 {
    margin-top: 1rem !important;
}
.mt-2, .my-2 {
    margin-top: 0.5rem !important;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
img, svg {
    vertical-align: middle;
}
img {
    border-style: none;
}
@-webkit-keyframes spinner-border {
    to {
        transform: rotate(1turn);
    }
}
@keyframes spinner-border {
    to {
        transform: rotate(1turn);
    }
}
.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid;
        border-right-color: currentcolor;
        border-right-style: solid;
        border-right-width: 0.25em;
    border-right: 0.25em solid transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border 0.75s linear infinite;
    animation: spinner-border 0.75s linear infinite;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.center-container {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.center-child {
  width: 30%;
  padding: 20px;
  resize: both;
}
.full-width {
  width: 100%;
}