@font-face {
  font-family: BeelineSans;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src:
    local('BeelineSans'),
    local('BeelineSans-Regular'),
    url('../fonts/BeelineSans-Regular.woff2') format('woff2'),
    url('../fonts/BeelineSans-Regular.woff') format('woff');
}

@font-face {
  font-family: BeelineSans;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src:
    local('BeelineSans'),
    local('BeelineSans-Medium'),
    url('../fonts/BeelineSans-Medium.woff2') format('woff2'),
    url('../fonts/BeelineSans-Medium.woff') format('woff');
}

* {
  margin: 0;
  padding: 0;
  border: none;
}

a {
  all: unset;
}

.userIsTabbing *:focus {
  outline: 3px solid #f6ce6c;
}

body {
  margin: 0;
  overflow: hidden;
  background: #f0f3f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  position: fixed;
  bottom: 0;
  padding: 20px;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
}

@supports (height: 100svh) {
  .container {
    height: 100svh;
  }
}

@supports (width: 100svw) {
  .container {
    width: 100svw;
  }
}

.content {
  display: -webkit-box;
  display: flexbox;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.image-container {
  margin-bottom: 24px;
  display: -webkit-box;
  display: flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

@media (width <= 800px) {
  .image-container {
    -webkit-box-flex: 1;
    flex: 1;
  }
}

.image-container svg {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}

.title {
  font-family: BeelineSans, arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  font-style: normal;
  line-height: 36px;
  text-align: center;
  color: #28303f;
}

.subtitle {
  margin-top: 8px;
  font-family: BeelineSans, arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 20px;
  text-align: center;
  color: #77849d;
}

.buttons {
  margin-top: 40px;
  display: -webkit-box;
  display: flexbox;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 340px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  gap: 8px;
}

@media (width <= 800px) {
  .buttons {
    margin-top: 80px;
    max-width: 100%;
  }
}
