            @font-face {
            font-family: 'Papyrus';
            src: url(../Assets/papyrus.ttf);
            }

            body {
                margin-top: 20;
                min-height: 100vh;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: blue;
                background-image: url(Assets/cloud_sky04.png);
                background-size: cover;
            }


            #box {
                margin-top: 20px;
                display: flex;
                flex-direction: column;
                height: auto;
                background-color: #756464;
                width: 80vh;
                background-size: 100%;
                background-image: url(Assets/WaterfallclearGL.png);
                position: relative;

            }

            #tbox {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                text-align: center;
                background-color: aquamarine;
                opacity: .4;

                margin-bottom: 100px;
            }


            #infobox {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: space-between;
                text-align: center;
                background-color: aquamarine;
                background-image: url(Assets/CoMC_Env_Top.png);
                background-size: 100%;
                margin-bottom: 40px;
                padding: 15px;
                margin-left: 200px;
                margin-right: 200px;
            }


            

            .logo {
                display: block;
                max-width: 100%;
                height: 80px;

                margin-bottom: 10px;


            }


            .back-button {
                position: fixed;
                top: 12px;
                left: 12px;
                z-index: 9999;

                display: inline-block;
                padding: 8px 14px;
                color: white;
                text-decoration: none;
                font-family: inherit;
                font-size: 44px;
                cursor: pointer;
                opacity: (.4);
                text-shadow: 3px 3px 0px #000;
                
                
            }

            @keyframes soft-wiggle {
                0%   { transform: rotate(0deg) translateX(0); }
                25%  { transform: rotate(-2deg) translateX(-1px); }
                50%  { transform: rotate(2deg) translateX(1px); }
                75%  { transform: rotate(-1deg) translateX(-1px); }
                100% { transform: rotate(0deg) translateX(0); }

            }

            .back-button:hover {
            animation: soft-wiggle 0.5s ease-in-out infinite;
            }

            .wings {
                position: absolute;
                top: 20px;
                left: -400px;
                z-index: 9999;
                pointer-events: none;

            }