@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
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: "Outfit", sans-serif;
}

body {
  background-color: hsl(228, 41%, 11%);
  background-image: url("../img/bg-illustration.svg");
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: left 60vw top 65%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#home {
  margin: 2rem;
  width: 700px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#home__logo {
  margin-bottom: 1rem;
  font-size: 3rem;
}
#home__logo img {
  width: 140%;
}
#home__input-fields {
  font-size: 1.5rem;
  border: 2px solid hsl(225, 76%, 55%);
  padding: 0.5rem;
  border-radius: 1rem;
  width: 100%;
  background-color: hsl(228, 41%, 11%);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 7px;
}
#home__input-fields input {
  background-color: transparent;
  color: hsl(214, 37%, 96%);
  flex-grow: 2;
}
#home__input-fields button {
  background-color: hsl(225, 76%, 55%);
  color: hsl(214, 37%, 96%);
  text-align: center;
  border-radius: 15px;
  padding: 0.5rem 2rem;
}
#home__input-fields button:hover {
  cursor: pointer;
  background-color: hsl(219, 73%, 78%);
  transition: all 100ms;
}

#qr-result {
  margin: 2rem;
  width: 700px;
  padding: 1rem;
  display: none;
  flex-direction: column;
  align-items: center;
}
#qr-result__logo {
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 3rem;
}
#qr-result__logo img {
  width: 140%;
}
#qr-result__image {
  background: hsl(223, 47%, 23%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}
#qr-result__image img {
  border: 15px solid hsl(214, 37%, 96%);
  border-radius: 10px;
}
#qr-result__download-share {
  display: flex;
  gap: 2rem;
  justify-content: space-around;
  font-size: 3rem;
  text-align: center;
  flex-wrap: wrap;
}
#qr-result__download-share button {
  color: hsl(214, 37%, 96%);
  font-weight: 900;
  background-color: hsl(225, 76%, 55%);
  padding: 1rem 2rem;
  border-radius: 15px;
  font-size: 1rem;
}
#qr-result__download-share button:hover {
  cursor: pointer;
  background-color: hsl(219, 73%, 78%);
  transition: all 100ms;
}
#qr-result__download-share button img {
  margin-left: 15px;
  vertical-align: middle;
  width: 1rem;
}/*# sourceMappingURL=main.css.map */