@import url("./colors.css");


@font-face {
  font-family: Suisse;
  font-style: normal;
  font-weight: 300;
  src: local(""),url(fonts/suisse/SuisseIntl-Light-WebXL.woff2) format("woff2")
}

@font-face {
  font-family: Suisse;
  font-style: normal;
  font-weight: 400;
  src: local(""),url(fonts/suisse/SuisseIntl-Regular-WebXL.woff2) format("woff2")
}

@font-face {
  font-family: Suisse;
  font-style: normal;
  font-weight: 500;
  src: local(""),url(fonts/suisse/SuisseIntl-Medium-WebXL.woff2) format("woff2")
}

@font-face {
  font-family: Suisse;
  font-style: normal;
  font-weight: 700;
  src: local(""),url(fonts/suisse/SuisseIntl-Bold-WebXL.woff2) format("woff2")
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  src: local(""),url(fonts/inter/Inter-Light.woff2) format("woff2")
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  src: local(""),url(fonts/inter/Inter-Regular.woff2) format("woff2")
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  src: local(""),url(fonts/inter/Inter-Medium.woff2) format("woff2")
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  src: local(""),url(fonts/inter/Inter-SemiBold.woff2) format("woff2")
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  src: local(""),url(fonts/inter/Inter-Bold.woff2) format("woff2")
}

body {
  background-color: var(--white);
  color: var(--gray-900);
}
@media (prefers-color-scheme: dark) {
  body {
    color: var(--white);
    background-color: var(--gray-900);
  }
}
.wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-bg);
}

.logo {
  margin: 36px;
  align-self: start;
}

.logo svg {
  width: 120px;
  height: auto;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: 30vw;
  min-width: 300px;

  padding: 32px;

  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.icon {
  margin-bottom: 24px;
  width: 36px;
  height: 36px;
}

.title {
  width: 100%;
  text-align: center;
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--color-text-primary);
}

.message {
  color: var(--color-text-secondary);
  font-weight: 300;
  font-size: 16px;
  text-align: center;
}
.message:not(:last-child) {
  margin-bottom: 32px;
}
.message:last-child {
  flex-grow: 1;

  display: flex;
  flex-direction: column;
}

.message:last-child > * {
  height: fit-content;
  margin-top: auto;
}

/* SETTERS */
:root {
  font-family: Inter, Roboto, sans-serif;
}

body {
  margin: 0;
}

img {
  width: 100%;
  height: auto;
}

h1 {
  margin: 0;
}

p {
  padding: 0;
  margin: 0;
}
