#canvas {
   position: fixed;
   inset: 0;
   width: 100%;
   height: 100%;
   display: block;
   z-index: -1;
   background-color: black;
}

@media (max-width: 600px) {
   #canvas2 {
      display: none;
   }

   .content {
      background-color: #FFFFFF;
      padding: 0.25rem;
      padding-right: 1.0rem;
      padding-left: 1.0rem;
      margin: 0.25rem;
      border-radius: 0.1rem;
   }
}

/* CSS Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'Prime', sans-serif;
   font-weight: 700;
   letter-spacing: 0.05em;
}

p,
li {
   font-family: 'Saira', sans-serif;
   font-size: 1.1em;
   line-height: 1.6;
   color: #222;
}


main {
   display: flex;
   flex-direction: column;
   flex: content;
}

.content {
   background-color: #FFFFFF;
   padding: 0.5rem;
   padding-right: 1.5rem;
   padding-left: 1.5rem;
   margin: 0.5rem;
   border-radius: 0.1rem;
}



.flex-col {
   display: flex;
   gap: 1rem;
   flex-direction: column;
   align-items: center;
   justify-items: center;
   width: 100%;
}

iframe {
   max-width: 20rem;
}

.inner {
   background-color: darkgrey;
   margin: 5px;
   flex: none;
}

body {
   margin: 0;
   background: transparent;
}


/* TOP AREA*/
.subsection {
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: center;
   width: 90%;
   gap: 1rem;
   max-width: 90rem;
   margin: 0 auto;
   padding-top: 2rem;
   padding-bottom: 2rem;
}

.subsection>* {
   flex: 1 1 50%;
   /* each takes up half, but still shrink/grow */
   max-width: 100%;
   /* cap at half */
}

.subsection>img {
   border-radius: 1rem;
   width: 50%;
   /* scales within its flex space */
   height: auto;
}

.subsection canvas {
   aspect-ratio: 1 / 1;
   /* square */
   width: 50%;
   height: auto;
   /* keeps aspect ratio */
}



.footer div {
   display: flex;
   justify-content: center;
   gap: 1.5rem;
   padding: 1rem;
   background-color: #111;
}

.footer a {
   color: #ccc;
   transition: color 0.1s;
}

.footer a:hover {
   color: #F00000;
}

.footer svg {
   width: 28px;
   height: 28px;
}
