* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
}


h1, h2 {
  font-family: "Cocomat Pro", sans-serif;
  font-size: 30px;
  font-weight: 600;
}

:root {
  --gray1: #FCFBFA;
  --gray2: #EBE7E6;
  --gray3: #D9D4D3;
  --gray4: #C7C1C0;
  --gray5: #B5AEAE;
  --gray6: #918989;
  --gray7: #6E6666;
  --gray8: #4A4444;
  --gray9: #262222;
  --global-min-width: 950px;
  --darkmodecolor: linear-gradient(126deg,rgba(30, 21, 66, 1) 0%, rgba(5, 0, 0, 1) 100%);
  --lightmodecolor: linear-gradient(134deg,rgba(255, 255, 255, 1) 0%, rgba(122, 89, 255, 1) 91%);
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-thumb {
  background-color: rgb(13, 9, 29);
}
  main {
    flex: 1;
    background: linear-gradient(134deg,rgba(255, 255, 255, 1) 0%, rgba(122, 89, 255, 1) 91%);;
  }

.separator {
  background-color: var(--gray8);
  height: 5px;
}

.separator_2 {
  background: var(--lightmodecolor);
  height: 1px;
  opacity: 0.3;
}

.separator5 {
  height: 60px;
  width: 10px;
  background: var(--darkmodecolor);
  border-radius: 20px;
}

#button, button {
  border-radius: 10px;
  padding: 2px;
  cursor: pointer;
  background: linear-gradient(134deg, rgba(255, 255, 255, 1), rgba(122, 89, 255, 1));
  transition: all 0.2s ease;
}

button {
  border-radius: 10px; 
  background: var(--darkmodecolor);
  padding: 10px 40px;
  width: 100%;
}

#button p {
  border-radius: 10px; 
  background: var(--darkmodecolor);
  padding: 10px 40px;
}
#button:hover {
  opacity: 0.5;
}

span {
  background: var(--lightmodecolor);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Solo ignora esto, uhh... */
#light {
  background: var(--lightmodecolor);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#dark {
  background: var(--darkmodecolor);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  display: inline-flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}

.subtitle .separator3 {
  height: 7px;
  background: var(--darkmodecolor);
  flex-grow: 1;
  border-radius: 50px;
  margin: 0 0 0 15px;
}

.subtitle .separator6 {
  height: 7px;
  background: var(--lightmodecolor);
  flex-grow: 1;
  border-radius: 50px;
  margin: 0 0 0 15px;
}

main section {
  padding: 10px;
}

footer .content, 
header .content {
  border-radius: 8px;
  max-width: var(--global-min-width);
}

#toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: green;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 20;
}

#toast.show {
  opacity: 1;
}
