:root {
  --background1: #E8E9E1;
  --background2: #F8F8F8;
  --colour-1:#073431;
  --colour-2:#B59155;
  --colour-3:#3A3A38;

  --font-colour: #2e2e2e;
  --hover-colour: #FF5D6F;
}

::-moz-selection {
  background: #B59155;;
  color: white;
}
::selection {
  background: #B59155;;
  color: white;
}
a {
  color: black;
  text-decoration: none;
}

/* mouse over link */
a:hover, a:active {
  color: #573236;
}

body {
  font-family: 'Work Sans', sans-serif;
  color: #2e2e2e;
  background-color: var(--background1);
}

h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', sans-serif;
  color: #073431;
}

h1 {
  font-weight: 400;
  font-size: 3.5rem;
}
h2 {
  font-weight: 300;
  font-size: 3rem;
}
h3 {
  font-weight: 300;
  font-size: 2.5rem;
}
h4 {
  font-weight: 300;
  font-size: 2rem;
}
h5 {
  font-weight: 300;
  font-size: 1rem;
}
p {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}
.p1 {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.75rem;
}
.p2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
}
hr {
  border: none;
  border-top: 1px solid #ccc;
}
button {
  font-family: inherit; /* Inherits the font family from its parent */
  font-size: inherit;   /* Inherits the font size from its parent */
  color: inherit;       /* Inherits the text color from its parent */
  border: none;
}


*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  scroll-behavior: smooth;
}

body:has(dialog:open) {
  overflow: hidden;
}

body:has(.dialog__mobile-menu:open) {
  position: relative;
  overflow: hidden;
  -webkit-overflow-scrolling: hidden;
  z-index: -9;
}

table, tr, th, td {
  border-collapse: collapse;
  border: 1px solid;
  padding: 0.5rem;
  width: 500px;
}

.inner-table {
  border: none;
  padding: 0;
}

/* ---------------------------------------Body--------------------------------------------------- */
.main {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  margin: 50px 0;
}
@media screen and (min-width: 425px) {}
@media screen and (min-width: 600px) {}
@media screen and (min-width: 769px) {
  .text-content {
    width: min(100%, 700px);
  }
}
@media screen and (min-width: 1024px) {}
@media screen and (min-width: 1200px) {}
@media screen and (min-width: 1440px) {}
