:root {
  --background: white;
  --background-2: rgb(247,247,247);
  --background-3: rgb(198,198,198);
  --font-colour: rgb(59,58,58);
  --colour-1:rgb(30,45,59);
  --colour-2:rgb(237,205,31);
  --colour-3:rgb(61,89,117);
  --hover-colour: #e3eae8;
}

::-moz-selection {
  background: #2e2e2e;
  color: #FFFCF7;
}
::selection {
  background: #2e2e2e;
  color: #FFFCF7;
}
a {
  color: black;
  text-decoration: none;
}

/* mouse over link */
a:hover, a:active {
  color: #573236;
}

body {
  font-family: 'Helvetica Light', sans-serif;
  color: rgb(59,58,58);
  background-color: #f2f2f2;
}

h1, h2, h3, h4, h5 {
  font-family: 'Avenir Heavy', sans-serif;
  color: rgb(30,45,59);
}

h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  line-height: 2.2rem;
  text-transform: uppercase;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.3rem;
}
h5 {
  font-size: 1rem;
}
p {
  font-family: 'Helvetica Light', sans-serif;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.5em;
}
.p1 {
  font-family: 'Helvetica Light', sans-serif;
  font-size: 0.75rem;
}
.p2 {
  font-family: 'Helvetica Light', sans-serif;
  font-size: 0.9rem;
}

.p3 {
  font-family: 'Helvetica Light', sans-serif;
  font-size: 0.7rem;
  text-transform: capitalize;
  margin-top: 0;
  color: #72827f;
  & >a {
    color: #72827f;
  }
}
hr {
  height: 10px;
  width: 100px;
  color: rgb(237,205,31);
  background: rgb(237,205,31);
  font-size: 0;
  border: 0;
}


*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  scroll-behavior: smooth;
}

body:has(dialog:open) {
  overflow: hidden;
}

/* body:has(.mobile-menu .active) {
  overflow: hidden;
  -webkit-overflow-scrolling: hidden;
} */

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);
  }
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 3rem;
    line-height: 2.8rem;
  }
}
@media screen and (min-width: 1024px) {}
@media screen and (min-width: 1200px) {}
@media screen and (min-width: 1440px) {}
