@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css?family=Montserrat");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");
:root {
  --background-color: #f7f7f7;
  --callout-color: #ff6873;
  --body-bg: #f7f7f7;
  --cta-size: 280px;
  --cta-bg-color: #d32658;
  --front-bg-color: #151922;
  --back-bg-color: #0b5cff;
  --link: #ff3f32;
  --link-underline: --link;
  --tip-bg: #f8f0d4;
  --transition-duration: 0.5s;
  --bounce-duration: 0.3s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100vh;
}

body {
  opacity: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background-color: var(--background-color);
  font-family: "Poppins", sans-serif;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: 0;
  padding: 20px;
  gap: 20px;
  transition: opacity 1s ease-in-out;
}

h1 {
  color: #4c4b4a;
  text-transform: uppercase;
  font-family: "Open Sans";
  text-align: center;
}
h1 span {
  display: block;
  font-weight: normal;
  font-size: 80%;
  text-transform: none;
}

.container {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 10px 0px 0 #ff3305 inset;
  filter: drop-shadow(7px 12px 9px #f4f4f4);
  border: 3px solid #f4f4f4;
  max-width: 670px;
  width: 100%;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  display: block;
  margin: 10px auto;
  font-size: 18px;
}

input,
select {
  margin-bottom: 10px;
  font-size: 18px;
  outline: none;
  transition: 0.1s all linear;
  padding: 10px 10px 10px 5px;
  border: none;
  background-color: rgba(244, 244, 244, 0.6509803922);
  border-bottom: 2px solid #757575;
}
input:active:not(#imageLink), input:hover:not(#imageLink), input:focus:not(#imageLink),
select:active:not(#imageLink),
select:hover:not(#imageLink),
select:focus:not(#imageLink) {
  background-color: rgba(239, 78, 78, 0.1803921569);
  border-bottom: 2px solid #ef4e4f;
}

button {
  padding: 10px;
  margin: 10px 0;
  font-size: 16px;
  background-color: #007bff;
  background-color: #ef4e4f;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
button:hover {
  background-color: #841f18;
}

h4 {
  margin-bottom: 10px;
  color: #333;
}

.size {
  display: flex;
  justify-content: space-between;
}

.colors {
  display: flex;
  gap: 5px;
}
.colors input {
  border-bottom: 0;
}

#templateSelect {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(142, 225, 252, 0.2392156863);
}

#placeholderImage {
  display: none;
}

.font-size {
  width: auto;
  max-width: 120px;
}

.format {
  text-align: right;
  width: 100%;
}

svg {
  font-family: monospace;
}

#downloadLink {
  width: -moz-fit-content;
  width: fit-content;
}

.link-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ef4e4f;
  margin-top: 10px;
  gap: 5px;
}
.link-container #imageLink {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  width: auto;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin: 3px;
  border: 0;
  background-color: #fff;
}
.link-container #copy {
  position: relative;
  padding: 10px 20px;
  font-size: 16px;
  height: 38px;
  border-radius: 0;
  margin-bottom: 0;
  margin-top: 0;
  background-image: url("copy.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px;
  left: -4px;
}
.link-container #copy:hover {
  background-color: #841f18;
}

.bg-color,
.text-color {
  width: 40px;
  height: 40px;
  padding: 0;
}

img {
  margin-top: 20px;
  max-width: 100%;
  height: auto;
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  background-color: #4CAF50;
  color: white;
  border-radius: 4px;
  display: none;
  animation: fadeInOut 10s ease-in-out;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  5% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.input-tooltip {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9em;
  display: none;
  white-space: nowrap;
  z-index: 10;
  transition: all 0.5s ease-in;
}

.tooltip-visible {
  display: block;
  z-index: 1000;
}

#admin #clearStatsButton {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-self: flex-end;
}
#admin .container {
  max-width: 1200px;
  margin: 0 auto;
}
#admin .card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#admin .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
#admin table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
#admin th,
#admin td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
#admin th {
  background-color: #f8f9fa;
}
#admin h2 {
  margin-top: 0;
  color: #333;
}
#admin .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
#admin .modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
#admin #modalButtons {
  display: flex;
  justify-content: space-evenly;
}

footer {
  position: relative;
  font-family: "Open Sans", sans-serif;
  display: inherit;
  justify-content: center;
  padding-top: 30px;
}
footer .help-key {
  position: absolute;
  text-transform: uppercase;
  font-size: 12px;
  left: 10px;
  padding-top: 2px;
  padding-bottom: 10px;
  font-weight: bold;
  color: var(--wip);
  display: none;
}
footer .author {
  text-transform: uppercase;
  font-size: 14px;
  right: 10px;
  padding-top: 2px;
}
footer .author span.heart {
  display: inline-block;
  color: var(--link);
  animation: pulse 2s infinite;
}
footer .author a {
  color: var(--link);
  position: relative;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid var(--link-underline);
  padding: 0 2px;
  top: 0;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
footer .author a:after {
  position: absolute;
  content: "";
  left: 0;
}
footer .author a:visited {
  color: var(--link);
}
footer .author a:hover {
  color: #fff;
  background-color: var(--link);
  padding: 9px 2px 30px 2px;
  top: -12px;
}
footer .author a:hover:after {
  position: absolute;
  content: "SCOTTO";
  left: 5px;
  top: 30px;
  background-color: var(--link);
}/*# sourceMappingURL=main.css.map */