body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto;
    background-color: #f8fdfb;
    color: #333;
    font-family: var(--font-sans), system-ui, -apple-system, PingFang SC, "Microsoft YaHei", Segoe UI, Roboto, Helvetica, noto sans sc, hiragino sans gb, "sans-serif", Apple Color Emoji, Segoe UI Emoji, Not Color Emoji;
}

#canvas-container {
    position: fixed;
    width: 100%;
    height: 100%;
}

#content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: calc(100vh - 5vh);
    margin: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.3);
}

#text-content {
    text-align: center;
    max-width: 500px; /* Adjust this value as needed */
    font-size: 2em;
}

h1 {
    margin-bottom: 20px;
    color: #212121;
}

.cursor {
    border-right: 2px solid #333;
    animation: blink 1s infinite;
}

.aspect-square {
    border-radius: 50%;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Media Queries for different screen sizes */

/* For tablets */
@media (max-width: 768px) {
    #content {
        flex-direction: column;
        justify-content: center;
    }

    #text-content {
        margin-bottom: 20px;
        text-align: center;
        max-width: 100%;
    }

}

/* For mobile phones */
@media (max-width: 480px) {
    #content {
        flex-direction: column-reverse;
        justify-content: center;
    }

    #text-content {
        margin-top: 20px;
        text-align: center;
        max-width: 100%;
    }
    .imgCtrl {
        width: 200px !important;
        height: 200px !important;
    }
}


#text-container,
#image-container {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#text-content {
    text-align: center;
    width: 100%; /* Adjust this value as needed */
}

#text-container {
    padding-right: 20px; /* Adjust as needed */
}

#image-container {
    padding-left: 20px; /* Adjust as needed */
}

.opacity-80 {
    opacity: .8;
}

.imgCtrl {
    width: 300px;
    height: 300px;
}

menu, ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.inline-block {
    display: inline-block;
}

*, :after, :before {
    box-sizing: border-box;
    border: 0 solid #e5e7eb;
}

.center {
    align-items: center;
    justify-content: center;
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity));
}

.rounded-full {
    border-radius: 9999px;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity));
}


.flex {
    display: flex;
}

.mt-8 {
    margin-top: 2rem;
}

ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

a {
    word-break: break-all;
    font-size: 2em;
}

a {
    color: inherit;
    text-decoration: inherit;
}

audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
    vertical-align: middle;
}

li.inline-block {
    margin-right: 10px;
}

li.inline-block:last-child {
    margin-right: 0;
}

li.inline-block {
    margin: 0 10px;
}
