* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
}

/*****************************************************************************/

.fixed-image-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  z-index: -1;
}

.fixed-image-container img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

/*****************************************************************************/

.centre-header {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: xx-large;
  text-align: center;
  z-index: 0;
}

/*****************************************************************************/

.footer {
  position: fixed;
  bottom: 0;
  right: 0;
  color: #c0c0c0;
  font-size: small;
  padding: 5px 10px;
  text-align: right;
  z-index: 0;
}
