@keyframes fadein {
  from {opacity: 0;}
  to {opacity: 1;}
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  scroll-behavior: smooth;
}

table, tr, th, td {
  border-collapse: collapse;
  border: 1px solid;
  padding: 0.5rem;
  width: 500px;
}

.inner-table {
  border: none;
  padding: 0;
}


/* ------------------------------------------Index Page------------------------------------------------------- */
.main-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--colour-2);
  height: 400px;
}

.main-banner h1 {
  color: #279e9b;
}
/* ---------------------------------------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) {}
