:root {
  --radius: 10px;
  --gap: 20px;
  --gray: #252525;
  --background: #171311;
  --foreground: #d4d4d4;
  --border: #342f2e;
  --button: #573a2c;
  --logo: #783d3d;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-align: center;
  line-height: 130%;
}

h1 {
  font-size: 4em;
}

a {
  color: var(--foreground);
  text-decoration: none;
  display: block;
}

a:hover {
  text-decoration: underline;
}

footer {
  text-transform: uppercase;
  font-size: 12px;
  color: #783d3d;
  margin-top: 40px;
}

.cross {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.cross::before,
.cross::after {
  content: "";
  display: block;
  background: #783d3d;
  width: 87%;
  height: 1%;
}

.cross .cross::before,
.cross .cross::after {
  content: "";
  display: block;
  background: #783d3d;
  width: 87%;
  height: 11%;
  margin-right: 10px;
}

.cross::before {
  transform: rotate(90deg);
  position: absolute;
}

footer a.mifa {
  display: block;
  height: 64px;
  width: 160px;
  background: url(https://medconsultants.com.au/portals/med/Images/mifaLink.png) no-repeat;
  margin: 0 auto;
}

.logo {
  display: flex;
  width: fit-content;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  gap: var(--gap);
}

.logo div:last-child {
  text-align: left;
}

.logo p {
  color: rgba(255, 255, 255, 0.726);
  font-size: 0.8em;
}