@font-face {
  font-family: 'Karbon';
  src: url('../typefaces/karbon-web-regular.woff2') format('woff2'),
       url('../typefaces/karbon-web-regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Karbon';
  src: url('../typefaces/karbon-web-medium.woff2') format('woff2'),
       url('../typefaces/karbon-web-medium.woff') format('woff');
  font-weight: 500;
  font-display: swap;
}

html {
    height: -webkit-fill-available;
    box-sizing: border-box;
    font-size: 16px;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: #FFFFFF;
    font-family: 'Karbon', Verdana, sans-serif;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

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

.wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(#F05D22, #EE4036);
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 0 30px;
    text-align: center;
}

.logo {
    width: 100%;
    object-fit: contain;
    margin-bottom: 30px;
}

h2 {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, .95);
}

.button {
    position: absolute;
    bottom: 40px;

    background: #FFFFFF;
    color: #EE4433;
    padding: 8px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
}

.button:hover {
    background: rgba(255, 255, 255, .95);
}

.button.button--outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.button.button--outline:hover {
    background: rgba(255, 255, 255, .05);
}

@media screen and (max-width: 600px) {
  h2 {
      font-size: 1.2rem;
      white-space: nowrap;
  }
}

@media (prefers-color-scheme: dark) {
  .wrapper {
      background: #000000;
  }

  .button {
      color: #000000;
  }
}
