/* type */
body{
    font-size: 20px;
    line-height: 1.35;
    font-weight: bold;
}

.text-box{
    width: calc(100% - 2em);
    max-width: 62ch;
    margin: 1em;
}
a{
    color: red;
}
ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
  }
  
  li {
    /* padding-left: 1em; */
    /* text-indent: -1em; */
  }
  
  li:before {
    content: "👉";
    padding-right: 5px;
  }


/* bg vid */
.iframe-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.iframe-wrapper iframe {
    width: 100vw;
    height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 500px) {
    body {
        font-size: 16px;
    }
}
