@font-face {
  font-family: "Ubisoft Sans";
  src: url("https://ubi-web-part.akamaized.net/quartz/deny/assets/fonts/UbisoftSans-Regular.woff2") format("woff2"),
    url("https://ubi-web-part.akamaized.net/quartz/deny/assets/fonts/UbisoftSans-Regular.woff") format("woff"),
    url("https://ubi-web-part.akamaized.net/quartz/deny/assets/fonts/UbisoftSans-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Ubisoft Sans";
  src: url("https://ubi-web-part.akamaized.net/quartz/deny/assets/fonts/UbisoftSans-Bold.woff2") format("woff2"),
    url("https://ubi-web-part.akamaized.net/quartz/deny/assets/fonts/UbisoftSans-Bold.woff") format("woff"),
    url("https://ubi-web-part.akamaized.net/quartz/deny/assets/fonts/UbisoftSans-Bold.ttf") format("truetype");
  font-weight: 700;
}

:root {
  --side-gap: 1.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ubisoft Sans", sans-serif;
  margin: 0;
}

html,
body,
#root {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  font-family: "Source Sans Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: center / cover url(https://ubi-web-part.akamaized.net/quartz/deny/assets/images/bg.jpg) fixed;
  color: white;
  min-height: 100vh;
  padding: var(--side-gap);
}

h1 {
  font-family: "Ubisoft Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
}

.wrapper {
  position: relative;
}

.logo {
  display: block;
  width: 9.875rem;
  height: 1.5rem;
}

.beta {
  padding: 0.0625rem 0.25rem;
  border-radius: 0.125rem;

  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;

  color: var(--white);
  background: linear-gradient(to right, #5856de, #bd4be5);
  box-shadow: 0 0.25rem 0.5rem -0.25rem rgba(88, 86, 222, 0.5);
  position: absolute;
  top: 0;
  right: -2.3rem;
}

.content {
  max-width: 375px;
  margin: auto;
}

.content div {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
}

.content div > a {
  color: white;
}

@media screen and (min-width: 768px) {
  body {
    background-image: url(https://ubi-web-part.akamaized.net/quartz/deny/assets/images/bgDesktop.jpg);
  }

  .logo {
    height: 2rem;
    width: unset;
  }
}

