/* Fonts */

/* Montserrat */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v18/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Montserrat 500";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v18/JTURjIg1_i6t8kCHKm45_ZpC3gnD_g.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  --theme-color: hsl(33, 100%, 60%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #eee;
  background-color: #888;
  color: black;
  margin: 0.5rem;
}

a {
  text-decoration: none;
  display: block;
}

b {
  font-family: "Montserrat 500";
}

h1 {
  font-family: "Montserrat 500";
  letter-spacing: 7px;
  font-size: 3rem;
}

header h1 {
  color: white;
  text-shadow: 0 0 3px #000, 0 0 5px #000;
}

header a {
  width: fit-content;
  margin: 0 auto;
}

header span {
  color: white;
  font-weight: 3rem;
  font-family: sans-serif;
  font-weight: bold;
}

#tagline {
  color: black;
  font-family: "Montserrat 500";
  font-size: 1.3rem;
  font-weight: normal;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: hsl(270, 70%, 40%);
  color: black;
  font-size: 2rem;
  font-weight: bold;
  background-color: var(--theme-color);
  border-radius: 20px;
  padding: 1rem;
  margin: 1rem 0;
  cursor: pointer;
}

.container {
  background-color: beige;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
}

header {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--theme-color);
  border-radius: 10px 10px 0 0;
}

header .get-share-page-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  background-color: var(--theme-color);
  color: white;
  padding: 0.75rem;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 10px;
  margin-top: 1rem;
  border: 2px dotted white;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 70vh;
  padding: 2rem 0;
}

footer {
  text-align: center;
  font-family: "Montserrat 500";
  background-color: var(--theme-color);
  padding: 2rem 1rem;
  font-size: 1.25rem;
  border-radius: 0 0 10px 10px;
}

/* fonts */

/* Fira Code */
@font-face {
  font-family: "Fira Code";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/firacode/v14/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sJVD7Ng.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

h2 {
  margin: 2rem 0;
}

.content h2 {
  margin: 0 auto;
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

#input-box {
  border: 3px solid black;
  border-radius: 20px;
  padding: 1rem;
  font-size: 2rem;
  max-width: 20rem;
}

.btn-div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.btn-div button {
  border-radius: 20px;
  font-size: 1rem;
  font-family: "Montserrat";
  border: 3px solid black;
  background-color: hsl(100, 100%, 40%);
}

#download {
  border: 3px solid black;
  margin-right: 1.5rem;
  font-size: 1rem;
  background-color: hsl(100, 100%, 40%);
}

#fetch-info {
  background-color: hsl(46, 100%, 65%);
}

#download {
  display: none;
}

.btn-div p {
  font-size: 2rem;
  margin: 0 auto;
  padding: 1rem;
}
