@font-face {
  font-family: "Swish Font";
  src: url("/fonts/museosansrounded-300-webfont.woff");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Swish Font";
  src: url("/fonts/museosansrounded-500-webfont.woff");
  font-style: bold;
  font-weight: 500;
}

html,
body {
  margin: 0;
}

html {
  font-family: "Swish Font", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h1,
h2,
h3 {
  font-weight: 500;
  margin: 16px 0;
}

input,
button {
  font-family: "Swish Font", sans-serif;
}

input:focus {
  border: 1px solid #1dafec;
  outline: 0;
}

a {
  text-decoration: none;
  color: #1dafec;
  font-weight: 500;
}

img {
  display: block;
  max-width: 100%;
}

/* Elements */

.page-header {
  position: absolute;
  top: 0;
  height: 90px;
  width: 100%;
  z-index: 999;
  margin: auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-title {
  font-size: 16px;
  margin-left: 32px;
  display: none;
}

.gitlab-link {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.gitlab-link span {
  display: none;
}

.button {
  cursor: pointer;
  display: block;
  background: linear-gradient(180deg, #1dafec 0%, #129bd4 100%);
  border: none;
  border-radius: 12px;
  color: white;
  margin-top: 24px;
  width: 270px;
  height: 48px;
  font-size: 18px;
  font-weight: bold;
  max-width: 100%;
  box-shadow: 0px 1px 2px 0px #0000001a;
}

.button:hover,
.button:active {
  background: linear-gradient(180deg, #18a1db 0%, #0e8fc4 100%);
}

.button:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #1dafec;
}

/* Desktop styles */

@media (min-width: 769px) {
  html {
    font-size: 18px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  h1,
  h2,
  h3 {
    font-weight: 500;
    margin: 24px 0;
  }

  .page-title {
    display: block;
  }

  .gitlab-link .icon {
    margin-right: 8px;
  }

  .gitlab-link span {
    display: block;
  }
}
