        body {
            margin: 0;
        }

        .myVideo {
            position: fixed;
            min-width: 100%;
            min-height: 100%;
        }

        .flex-container {
            width: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            align-items: center;
            height: auto;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            margin: auto;
            z-index: 1;
            background-color: rgba(9, 0, 32, 0.75);
            border-width: 3px;
            border-radius: 5px;
            border-color: blueviolet;
            border-style: solid;
            color: white;
        }

        p.my-name {
            color: white;
            width: 70%;
            text-align: center;
            margin: auto;
        }

        img.my-photo {
            border-radius: 10px;
            border: none;
            width: 80%;
            height: auto;
            padding-top: 5%;
            padding-bottom: 5%;
        }

        p.my-mission {
            color: white;
            font-size: 180%;
            width: 80%;
            text-align: center;
            line-height: 1.5em;
            margin-bottom: 5%;
        }

        div.learning-panel {
            background-color: rgba(9, 0, 32, 0.75);
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: auto;
            width: 0;
            margin: auto;
            padding: 15px;  
            border-width: 3px;
            border-radius: 5px;
            border-color: blueviolet;
            border-style: solid;
            z-index: 1;
        }
  
        p.l-panel-title {
            color: white;
            font-size: 28px;
            text-align: center;
            margin-top: 18px;
            margin-bottom: 0
        }

        div.l-panel-content {
            color: white;
            font-size: 22px;
            line-height: 2em;
            text-align: left;
            padding: 20px;
            width: 90%;
        }

        ul {
            color: white;
            text-align: left;
            width: 80%;
            height: auto;
            margin: auto;
        }

        li {
            font-size: 20px;
            line-height: 1.6em;
            padding-bottom: 0.5em;
            line-height: 2em;
        }

        a:link {
            color: blueviolet;
        }

        a:visited {
            color: cyan;
        }

        /* a:hover {
            color: red;
        } */

        div.contact-panel {
            height: 0 auto 100px;
            width: 0;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            margin: 0 auto 100px;
            z-index: 1;
            border-width: 3px;
            border-radius: 5px;
            border-color: blueviolet;
            border-style: solid;
            background-color: rgba(9, 0, 32, 0.75);
            padding: 10px;
        }

        p.c-panel-content {
            color: white;
            text-align: center;
            text-align: left;
            padding: 20px;
            line-height: 2em;
        }

        div.copyright-panel {
            position: absolute;
            top: 0;
            padding-left: 20px;
            padding-bottom: 20px;
        }

        p.cr-panel-content {
            color: white;
            font-size: 0.8em;
        }
