.title {
  text-align: center;
}

.company {
  --pico-font-size: 2rem;
  --pico-font-weight: 300;
  letter-spacing: 0.1rem;
  color: #b3242e;
}

.tagline {
  font-size: 0.7rem !important;
  font-weight: 300 !important;
  letter-spacing: 1px;
}

.company,
.tagline {
  white-space: nowrap
}

.logo-container {
  display: flex;
  justify-content: center;
}

.btn-hesap-olustur {
  --pico-color: #ffe0d6;
  --pico-primary-background: #b3242e;
  --pico-primary-hover-background: #c4353a;
  --pico-primary-focus: rgba(255, 1, 1, 0.375);
  --pico-primary-border: var(--pico-primary-background);
  border: var(--pico-border-width) solid var(--pico-primary-border);
}

@media (min-width: 240px) {

  :root,
  :host {
    --pico-font-size: 106.25%;
  }

  .company {
    --pico-font-size: 3rem;
    letter-spacing: 0.3rem;
  }

  .tagline {
    font-size: 1rem !important;
  }
}

@media (min-width: 380px) {

  :root,
  :host {
    --pico-font-size: 106.25%;
  }

  .company {
    --pico-font-size: 4rem;
    letter-spacing: 0.4rem;
  }

  .tagline {
    font-size: 1.5rem !important;
  }
}

@media (min-width: 576px) {

  :root,
  :host {
    --pico-font-size: 106.25%;
  }

  .company {
    --pico-font-size: 5rem;
    letter-spacing: 0.5rem;
  }

  .tagline {
    font-size: 2rem !important;
  }
}

@media (min-width: 768px) {

  :root,
  :host {
    --pico-font-size: 112.5%;
  }
}

@media (min-width: 1024px) {

  :root,
  :host {
    --pico-font-size: 118.75%;
  }
}

@media (min-width: 1280px) {

  :root,
  :host {
    --pico-font-size: 125%;
  }
}

@media (min-width: 1536px) {

  :root,
  :host {
    --pico-font-size: 131.25%;
  }
}

canvas {
  display: block;
  vertical-align: bottom;
}

/* ---- particles.js container ---- */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

[data-theme=light],
:root:not([data-theme=dark]),
:host(:not([data-theme=dark])) {
  color-scheme: light;
  --pico-background-color: #f2f0e6;
  /* --pico-background-color: #fff; */
}

@media only screen and (prefers-color-scheme: dark) {

  :root:not([data-theme]),
  :host(:not([data-theme])) {
    color-scheme: dark;
    --pico-background-color: #1c1b1a;
    /* --pico-background-color: rgb(19, 22.5, 30.5); */
  }
}