:root {
    --tint: #a50085;
    --gradient: linear-gradient(135deg, #d40086, #c50086, #b50086, #a50085, #950084, #840082, #73007f, #62007b);
}

* {
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    z-index: 2;
}

html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    text-align: center;
}

#circle {
    content: "";
    width: min(50vw, 50vh);
    height: min(50vw, 50vh);
    border-radius: 50%;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--tint);
    z-index: 0;
    filter: blur(5vw);
    transition: transform 0.3s;
}

@media (pointer: coarse) {
    #circle {
        display: none;
    }
}

#bodyBackground {
    content: "";
    background-color: white;
    z-index: 1;
    opacity: 0.35;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 0;
}

#bodyWrapper {
    position: relative;
    background-color: transparent;
    z-index: 2;
    padding: 0;
    min-height: 100vh;
    min-height: 100lvh;
    padding-bottom: 70px;
}

#landing {
    background-color: var(--tint);
    background: var(--gradient);
    width: 100vw;
    padding: 50px;
    text-align: center;
    color: white;
}

li {
    list-style: none;
}

li:before {
    content: "- ";
}

div {
    padding: 20px 30px;
}

#footer {
    text-align: center;
    width: 100vw;
    background-color: var(--tint);
    background: var(--gradient);
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
}

.embla {
    max-width: 400px;
    margin: 30px auto;
    --slide-height: min(19rem, 400px);
    --slide-spacing: 1rem;
    --slide-size: 75%;
}
.embla__viewport {
    overflow: hidden;
    padding: 0;
}
.embla__container {
    display: flex;
    touch-action: pan-y pinch-zoom;
    margin-left: calc(var(--slide-spacing) * -1);
    padding: 0;
}
.embla__slide {
    transform: translate3d(0, 0, 0);
    flex: 0 0 var(--slide-size);
    min-width: 0;
    max-height: 400px;
    padding: 0 0 0 var(--slide-spacing);
}
.embla__img {
    border-radius: 10px;
    width: 100%;
}
.embla__controls {
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.8rem;
    padding: 0;
}
.embla__buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    align-items: center;
    padding: 0;
}
.embla__button {
    -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    touch-action: manipulation;
    display: inline-flex;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    padding: 0;
    margin: 0;
    box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
    width: 3.6rem;
    height: 3.6rem;
    z-index: 1;
    border-radius: 50%;
    color: var(--text-body);
    display: flex;
    align-items: center;
    justify-content: center;
}
.embla__button:disabled {
    color: var(--detail-high-contrast);
}
.embla__button__svg {
    width: 35%;
    height: 35%;
}
