@import url("https://fonts.googleapis.com/css2?family=DynaPuff:wght@400..700&family=Inconsolata:wdth,wght@50..200,200..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
@font-face {
  font-family: "Subway-Shadow";
  src: url("../img/Subway-Shadow.ttg.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
button,
cite,
code,
del,
dfn,
em,
img,
ins,
input,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-family: "Subway", "DynaPuff", system-ui;
}

body {
  height: 100%;
  text-align: center;
  font-family: "Subway", "DynaPuff", system-ui;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: rgb(0, 140, 21);
  color: antiquewhite;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

span {
  color: rgb(255, 198, 0);
}

main {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-width: 650px;
  text-shadow: 5px 5px 0px black;
}
main h1 {
  font-size: 4rem;
}
main #subway-card {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
main #subway-card__total {
  font-size: 2rem;
  margin-bottom: 2rem;
}
main #subs-second {
  font-size: 2rem;
  margin: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
main header img {
  width: 100%;
}
main img {
  width: 130px;
  filter: drop-shadow(black 5px 5px 5px);
}
main img:hover {
  filter: drop-shadow(rgb(255, 198, 0) 5px 5px 5px);
  transform: scale(1.1);
  cursor: pointer;
  transition: all 100ms;
}
main img:active {
  filter: drop-shadow(rgba(255, 200, 0, 0.267) 3px 3px 1px);
  transform: scale(0.9);
}
main #toppings {
  width: 100%;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
main #toppings button {
  background: none;
  font-family: "Subway", "DynaPuff", system-ui;
  color: antiquewhite;
  text-shadow: 5px 5px 0px black;
}
main #toppings button:hover {
  filter: drop-shadow(rgb(255, 198, 0) 5px 5px 5px);
  transform: scale(1.1);
  cursor: pointer;
  transition: all 100ms;
}
main #toppings button:active {
  filter: drop-shadow(rgba(255, 200, 0, 0.267) 3px 3px 1px);
}
main #toppings button p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}/*# sourceMappingURL=main.css.map */