* {
    --primary-color: rgba(255, 0, 0, 1);
    --secondary-color: rgba(0, 191, 255, 1);
    /* transition: all 0.7s ease-out; */
    --stripe-width-1: 6px;
    --stripe-width-2: 6px;
}

body {
    margin: 0;
}

.solid-background {
    /* background: black; */
    background: var(--secondary-color);
}

.radial-background-1 {
    --gx1: 48%;
    --gy1: 48%;
    z-index: 1;
    background: repeating-radial-gradient(circle at var(--gx1) var(--gy1), var(--primary-color), var(--primary-color) var(--stripe-width-1), transparent var(--stripe-width-1), transparent calc(2 * var(--stripe-width-1)));
    background-repeat: no-repeat;
    background-size: cover;
}

.radial-background-2 {
    --gx2: 52%;
    --gy2: 52%;
    z-index: 5;
    background: repeating-radial-gradient(circle at var(--gx2) var(--gy2), transparent, transparent var(--stripe-width-2), var(--secondary-color) var(--stripe-width-2), var(--secondary-color) calc(2 * var(--stripe-width-2)));
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.7s ease-out;
    /* mix-blend-mode: screen; */
}

/* .glass-bubble-wrapper:has(.glass-bubble:hover) + .radial-background-2 {
    transform: scale(1.2, 1.3);
    background-repeat: no-repeat;
    background-size: cover;
} */

.vertical-wrapper {
    display: flex;
    flex-direction: column;
    perspective: 100px;
}

.full-height {
    height: 100vh;
}

.items-center {
    align-items: center;
}

.content-center {
    justify-content: center;
}

.glass-bubble-wrapper {
    z-index: 999;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    perspective: 100px;
}

.glass-bubble {
    user-select: none;
    cursor: pointer;
    z-index: 999;
    background:
        radial-gradient(ellipse at center, white 0%, transparent 100%),
        rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 20px;
    transform-style: preserve-3d;
    transition: background 0.7s ease-out, box-shadow 0.7s ease-out;
}

.test-bubble {
    background: red;
}

.glass-bubble:not(:hover) {
    /* box-shadow: inset 0 10px 20px white; */
}

.glass-bubble:hover {
    /* transform: rotate3d(1, 0, 0, -10deg) translate3d(0, 0, 10px); */
    /* box-shadow: inset 0 10px 20px white, 0 0 40px white; */
}

.glass-bubble:active {
    /* transform: rotate3d(1, 0, 0, 20deg) translate3d(0, 0, 0px); */
    filter: blur(0px);
}

#bio {
    display: none;
    /* opacity: 0; */
}

.gallery-image {
    margin: 10px;
    max-width: 100px;
    max-height: 400px;
    height: auto;
}

#content {
    padding: 20px;
    max-width: 30em;
}

.md {
    background-color: antiquewhite;
    border: 1px solid black;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.md a {
    position: relative;
    color: var(--primary-color);
}

.md>ul {
    width: fit-content;
    padding: 20px 20px 20px 40px;
    border-radius: 20px;
    background-color: wheat;
    border: 1px solid black;
    box-shadow: inset 0 10px 20px rgba(255, 255, 255, 1);
}

h1 {
    font-family: Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif;
    font-size: 23px;
    font-style: normal;
    font-variant: normal;
    font-weight: 700;
    line-height: 23px;
}

h3 {
    font-family: Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-variant: normal;
    font-weight: 700;
    line-height: 23px;
}

p {
    font-family: Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 23px;
}

blockquote {
    font-family: Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 23px;
}

pre {
    font-family: Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif;
    font-size: 11px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 23px;
}