@import url("https://fonts.googleapis.com/css2?family=Abel&family=Jacquard+24&family=Jersey+25&family=Lobster&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
}
:root {
  --color-1: rgba(55, 27, 88, 1);
  --color-2: rgba(76, 53, 117, 1);
  --color-3: rgba(91, 75, 138, 1);
  --color-4: rgba(120, 88, 166, 1);
}
body {
  height: auto;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 1rem);
}

.btn {
  position: relative;
  background: var(--color-4);
  padding: 1rem;
  border-radius: 0.5rem;
  color: var(--color-1);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  text-align: center;
  transition: color 0.5s linear, text-shadow 0.5s linear, background 0.3s linear;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.btn:not([class*="disabled"]):hover {
  color: white;
  text-shadow: 1px 3px 1px black;
}
.btn.delete:hover {
  background: red;
}
.btn[class*="disabled"] {
  cursor: not-allowed !important;
  pointer-events: none;
  user-select: none;
}
.btn[class*="disabled"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 100%;
  border-radius: 0;
  cursor: not-allowed;
  z-index: 2;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

/* section header start */
.sectionHeaderContainer {
  width: 90vw;
  margin: 1rem auto;
  font-size: clamp(1.3rem, 2vw, 2rem);
  text-align: center;
  background-image: linear-gradient(45deg, #b016c7, #0cc7a2);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
span.secIcon {
  color: black;
}
/* section header end */

/* disable input start */
input:disabled {
  cursor: not-allowed;
}
/* disable input end */
