/* Copyright 2026 The Chromium Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file. */

/* #css_wrapper_metadata_start
 * #type=style-lit
 * #import=//resources/cr_elements/cr_shared_vars.css.js
 * #scheme=relative
 * #css_wrapper_metadata_end */

:host {
  --product-logo-size: 72px;
  --title-font-size: 60px;
  --content-width: 600px;
  --color-button-background-prominent: var(--color-sys-primary);
  --color-button-foreground-prominent: var(--color-sys-on-primary);
  --color-toggle-button-track-on: var(--color-sys-primary);
  --color-toggle-button-thumb-on: var(--color-sys-on-primary);

  align-items: center;
  background-image: url(images/shared_gradient_light_background.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  gap: 48px;
  height: 100%;
  justify-content: center;
}

@media (prefers-color-scheme: dark) {
  :host {
    background-image: url(images/shared_gradient_dark_background.svg);
  }
}

#product-logo {
  height: var(--product-logo-size);
  width: var(--product-logo-size);
}

.title {
  color: var(--color-sys-on-surface);
  font-size: var(--title-font-size);
  font-weight: 700;
  margin: 0;
  max-width: var(--content-width);
  text-align: center;
}

#default-browser-container {
  align-items: center;
  color: var(--color-sys-on-surface);
  display: flex;
  font-size: 13px;
  gap: 16px;
  justify-content: center;
}

@media screen and ((max-width: 780px) or (max-height: 600px)) {
  :host {
    --product-logo-size: 48px;
    --title-font-size: 32px;

    gap: 32px;
  }
}
