body {
    font-size: calc(11px + 0.35vw);
    font-family: "Sniglet", cursive;
    letter-spacing: 0.3em;
    color: #fff;

    margin: 0px !important;

    background: #ff6d02 url(background.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

* { margin: 0px; }
* + * {
    margin-top: 1em;
}
br { margin: 0px !important; }

ul { padding: 0px; }

section, .logo_box {
    margin: calc(5px + 7vh);
    margin-left: auto;
    margin-right: auto;
    padding: calc(5px + 2vw);
    max-width: calc(400px + 26vw);
    /*background-color: rgba(255, 255, 255, 0.7);*/

    font-size: 2em;
    text-align: center;
}

.logo_box {
    margin-top: calc(10px + 7vh + 2vw); /* margin + padding */
    padding: 0em;
    display: table;
}
.logo_box>img {
    width: 5.72em;
}

footer {
    position: relative;
    bottom: calc(5px + 1vw);
    height: 0;
    overflow: visible;

    font-style: italic;
    font-size: 0.5em;
    text-align: center;
}

a {
    color: inherit;
    font-family: inherit;
}
h1>a, h2>a, h3>a, h4>a {
    text-decoration: none;
}

button, .button {
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    display: block;

    margin-left: 0em;
    margin-right: 0em;
    padding: 0.6em;

    color: black;
    background-color: #fff;
    cursor: pointer;

    border-radius: 3em;

    font-family: inherit;
    text-decoration: none;
    /* font-weight: 500; */
}
button:hover, .button:hover {
    background-color: #000;
    color: #fff;
}

.bigger {
    font-size: 1.2em;
    font-weight: bold;
}

.button-inline {
    display: inline-block;

    box-shadow:
        0.2em -0.2em 0px 0px #ff6d02,
        -0.2em 0.2em 0px 0px #ff6d02,
        0.2em 0.2em 0px 0px #ff6d02,
        0.24em 0.3em 0px 0px white;

    margin-left: 0.3em;
    padding: 0.3em;
    padding-left: 1em;
    padding-right: 1em;

    color: #ff6d02;
}
.button-inline:hover {
    box-shadow:
        0.2em -0.2em 0px 0px #ff6d02,
        -0.2em 0.2em 0px 0px #ff6d02,
        0.2em 0.2em 0px 0px #ff6d02,
        0.24em 0.3em 0px 0px black;
}

/* Firefox, honestly
   https://stackoverflow.com/questions/7928521/ */
button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner {
    padding: 0 !important;
    border: 0 none !important;
}

.icon {
  display: block;
  height: 1.4em; /* WHYYYYY */
  width: 1.4em;
  /* float: left; */

  position: absolute;
  margin-left: 0.3em;

  /* Use the current text color as the icon color */
  background-color: currentColor;

  /* Apply the mask using the variable */
  -webkit-mask-image: var(--icon-url);
  mask-image: var(--icon-url);
  mask-size: contain;
  mask-repeat: no-repeat;

  transition: background-color 0.2s ease;
}

input[type="text"] {
    text-align: inherit;
    font-size: inherit;
    font-family: Courier, monospace;

    border: none;
    border-radius: 0;
    background-color: #fff;

    width: calc(200px + 20vw);
    margin-left: auto;
    margin-right: auto;
    padding: 0.5em;

    -webkit-appearance: none;
}
