/*!********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./src/styles.css ***!
  \********************************************************************************************************************************************************************************************************/
/* Application-wide Styles */

:root {
  --styled-font: minions;
}

a {
  text-decoration: none;
}

h1 {
  color: #3a3;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 50px;
  text-shadow: 3px 3px 10px grey;
  -webkit-text-stroke: 2px black;
}

h2,
h3 {
  color: #444;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: lighter;
}

body {
  margin: 2em;
  background: #0a1f2a;
}

body {
  color: #c6995f;
  font-family: Arial, Georgia;
}

select {
  font-size: 18px;
}

li {
  background: #eee;
  margin: 12px;
  padding: 5px;
  list-style-type: none;
}

li:hover {
  background: #ddd;
}

span.badge {
  background: maroon;
  margin: 5px;
  font-weight: bold;
  color: white;
  padding: 0px 4px 0px 4px;
}

textarea {
  width: 80%;
  height: 100px;
  padding: 4px;
}

input[type="text"] {
  width: 70%;
  padding: 4px;
}

div.errordiv {
  background: #800;
  border-radius: 10px;
  border: 4px black solid;
  box-shadow: 0px 0px 3px 2px #800;
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 40px;
  margin: 12px;
}

@font-face {
  font-family: resistance;
  src: url("/assets/fonts/resistance.ttf");
}

@font-face {
  font-family: japan;
  src: url("/assets/fonts/Japanese\ 3017.ttf");
}

@font-face {
  font-family: disney;
  src: url("/assets/fonts/disney.ttf");
}

@font-face {
  font-family: illuminati;
  src: url("/assets/fonts/dum1.ttf");
}

@font-face {
  font-family: minions;
  src: url("/assets/fonts/PumpOpti-DemiBold.otf");
}

button.nuclear {
  background: linear-gradient(
    180deg,
    rgba(227, 227, 236, 1) 0%,
    rgba(221, 221, 228, 1) 73%,
    rgba(162, 162, 162, 1) 100%
  );
  font-family: resistance;
  text-shadow: gray 2px 2px 3px;
  padding: 16px;
  box-shadow: red 0px 0px 12px;
  margin: 5px;
  transition-duration: 0.4s;
  animation-name: example;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

@keyframes example {
  from {
    box-shadow: green 0px 0px 30px;
  }
  to {
    box-shadow: green 0px 0px 5px;
  }
}

button.nuclear:hover {
  color: green;
  box-shadow: green 0px 0px 20px;
  font-weight: bolder;
}


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