html, body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Source Code Pro", monospace;
  size: 100%;
  height: 100%;
  min-height: 100vh;
  min-width: 100vw;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background-color: #010101; /*bg element here so not effected by scroll*/
  background-image: url(assets/bgtest1.jpg);
}

.site-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto !important;
  min-height: calc(100vh - 2rem);
  width: auto !important;
  min-width: calc(100vw - 2rem);
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding: 1rem 1rem 1rem 1rem;
}

.site-main {
    --alignment: center;
    --flex-alignment: center;
    --indent-left: 1;
    --indent-right: 1;
    --margin-left: auto;
    --margin-right: auto;
    --border-radius-tl: 1rem;
    --border-radius-tr: 1rem;
    --border-radius-br: 1rem;
    --border-radius-bl: 1rem;
    align-items: center;
    /* display: flex; */
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: center;
    position: relative;
    text-align: var(--alignment);
    z-index: 1;
    background-color: #8F7160;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cline%20x1%3D%22256%22%20y1%3D%220%22%20x2%3D%22256%22%20y2%3D%22512%22%20stroke%3D%22rgba(254,255,212,0.169)%22%20stroke-width%3D%223.01px%22%20vector-effect%3D%22non-scaling-stroke%22%20stroke-linecap%3D%22square%22%20%2F%3E%3C%2Fsvg%3E');
    background-size: 6px;
    background-position: center;
    background-repeat: repeat;
    box-shadow: 1.069rem 0.865rem 0rem 0.125rem rgba(84,94,26,0.549);
    border: solid 1px #85673C;
    transition: opacity 1s ease 0s,transform 1s ease 0s;
    max-width: 100%;
    --width: 37rem;
    width: var(--width);
    padding: var(--padding-vertical) var(--padding-horizontal);

}

@media (max-width: 550px) {
  .site-wrapper {
    min-height: calc(100vh - 5rem);
    /* width:  */
    min-width: calc(100vw - 5rem);
  }

  .column {
    max-width: 50%;
  }

  .container {
    flex-wrap: wrap;
  }
}

header {
  display: flex;
  justify-content: space-around;
  max-width: 100%;
  /* gap: 10%; */
}

.header-content {
  max-width: min-content;
  font-size: 1.2em;
  align-items: center;
  display: grid;
  border: solid 1px #010101;
}

.header-content > .text-component {
  margin: auto;
  display: flex;
}

.loader {
  display: inline-flex;
}

.loader div {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background-color: #006969;
  border-radius: 50%;
}

@keyframes dotFlashing {
  0%, 80%, 100% { opacity: 0; }
  40% { opacity: 1; }
}

.main-content {
  padding: 1.2em;
  background-color: #D3D3D3;
  font-size: 0.75em;
  /* padding-block: 0.3em; */
}

#home {
  display: flex;
  column-gap: 0.7em;
}

.column {
  /* background-color: red; */
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 1em;
  /* height: 10em; */
}

.list-component {
  text-align: justify;
  align-items: justify;
}

#text-watching {
  padding-bottom: 0;
  margin-bottom: 0;
}

ul {
  padding-top: 0;
  margin-top: 0;
}

.container {
  background-color: grey;
  border: solid 1px black;
  width: 100%;
}

#logo {
  background-color: #010101;
  width: 95%;
  height: 10em;
}

#text05 {
  font-weight: 800;
  font-size: 1.5em;
}

.inactive {
  display: none;
  filter: opacity();
}

.borderless {
  border: 0;
}

#socmed-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

.socmed-icon {
  width: 3.5em;
  height: 3.5em;
  align-items: center;
  /* text-align: center; */
  /* display: flex; */
  border: solid 1px black;
}

audio {
  width: 20em;
  border-radius: 0;
  background-color: #006969;
  /* display: none; */
}