@font-face {
    font-family: 'CHANL';
    src: url('./fonts/justice.woff2') format('woff2'),
        url('./fonts/justice.woff') format('woff');
}

/* selection custom colour, to fit the style */
::selection {
    background: #090209;
  }

*, *::before, *::after {
    box-sizing: border-box;
  }

  *{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #c48d00;
  }

body{
    width: 100%;
    height: 100%;
    background-color: #090209;
    background-size: cover;
    opacity: 1;
    overflow-x: hidden;
}

.header{
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    flex-direction:column;
    font-weight: bold;
    text-align: center;
    position: absolute;
}

.sitelogo{
    width: 100px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

h1, h2{
    font-family: CHANL, sans-serif;
    font-size: 3em;
    line-height: 50px;
}

.disclaimer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  text-align: center;
  font-size: small;
  color: #c48d00;

  background: rgba(0, 0, 0, 0.05);
  padding: 10px 16px;

  box-sizing: border-box;
}