* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
:root {
  --gotham: 'Gotham', sans-serif;
  --white: #ffffff;
  --black: #000000;
  --primary-color: #e96c32;
}
img {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a,
a:visited {
  -webkit-transition: 0.3s color ease-in-out;
  transition: 0.3s color ease-in-out;
  text-deocoration: none;
}
@font-face {
  font-family: Gotham;
  src: url(./gotham-book.woff2) format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Gotham;
  src: url(./gotham-black.woff2) format('woff2');
  font-weight: 900;
  font-style: normal;
}
html {
  height: 100%;
}
body {
  position: relative;
  background-color: var(--primary-color);
  font-family: var(--gotham);
  min-height: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.logo {
  position: absolute;
  left: 0;
  right: 0;
  top: 3%;
  max-width: 251px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  z-index: 1;
}
.bodybg {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 1280px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bitbot {
  position: absolute;
  left: 0;
  right: 0;
  top: 13%;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.maintenance-data {
  position: relative;
  color: var(--white);
  text-align: center;
  max-width: 960px;
  margin: auto auto;
  z-index: 1;
}
@media only screen and (min-width: 769px) {
  .maintenance-data .subtitle {
    text-transform: uppercase;
    font-size: 28px;
  }
  .maintenance-data .title {
    font-weight: 900;
    font-size: 54px;
  }
  .bitbot {
    max-width: 289px;
  }
}
@media only screen and (max-width: 769px) {
  .maintenance-data .subtitle {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
  }
  .maintenance-data .title {
    font-weight: 900;
    font-size: 38px;
  }
  .bitbot {
    max-width: 200px;
  }
}
