:root {
    --dark-color: hsl(var(--hue), 100%, 9%);
    --light-color: hsl(var(--hue), 95%, 98%);
    --base: hsl(var(--hue), 95%, 50%);
    --complimentary1: hsl(var(--hue-complimentary1), 95%, 50%);
    --complimentary2: hsl(var(--hue-complimentary2), 95%, 50%);
    --complimentary3: hsl(var(--hue-complimentary3), 95%, 50%);

    --bg-gradient: linear-gradient(to bottom,
            hsl(var(--hue), 95%, 99%),
            hsl(var(--hue), 95%, 84%));
}

.orb-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

body {
    /* background-color: white; */
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    padding: 20px;
}

header h1 {
    margin: 0px;
    color: rgb(0, 0, 0);
    font-weight: 700;
    line-height: 1.5;
    text-overflow: ellipsis;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 20px;
}

.logo {
    display: inline-block;
    width: 100px;
    height: 100px;
    background-color: #3498db;
    border-radius: 50%;
    margin-bottom: 20px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.single-button {
    z-index: 0;
    overflow: hidden;
    margin-bottom: 16px;
    border: medium;
    background-color: rgba(255, 255, 255, 0.8);
    color: rgb(0, 0, 0);
    transition: transform 0.15s cubic-bezier(0, 0.2, 0.5, 3) 0s;
    box-shadow: rgba(10, 11, 13, 0.08) 0px 2px 4px 0px;
    border-radius: 7px;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .single-button {
        width: 93%;
    }
}

.single-button:hover {
    transform: scale(1.02);
}

.button {
    overflow-wrap: break-word;
    white-space: normal;
    background: none;
    transition: box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, border-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, background-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s;
    color: inherit;
    word-break: break-word;
    padding-left: 66px;
    padding-right: 66px;
    hyphens: auto;

    margin: 0px;
    border: medium;
    font-weight: inherit;
    font-size: inherit;
    text-align: center;
    cursor: pointer;
    background: none;
    text-decoration: none;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
    height: auto;
    position: relative;
    padding: 16px 20px;
    width: 100%;
    appearance: none;
    box-sizing: border-box;
    vertical-align: middle;
    font-family: inherit;
}

.button:hover {
    /* background-color: #2980b9; */
    /* background-color: #3aa3e9b4; */
    transform: scale(1.00);
}

.button-icon {
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    /* background-color: currentcolor;
    mask-image: url("https://assets.production.linktr.ee/0ed408205378988774d6091c9af73f60368b3112/icons/tabler-icons/currency-dollar.svg");
    mask-size: 100%; */
    left: 8px;
    border-radius: 4px;
    width: 48px;
    height: 48px;
    display: flex;
}

.button-text {
    hyphens: none;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    padding: 0px;
    margin: 0px;
    line-height: 1.5;
    width: 100%;
}

.main-container {
    margin: 0px auto;
    height: 100%;
    width: 100%;
    max-width: 680px;
}

.footer {
    padding: 25px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    /* background: linear-gradient(45deg, #061b80, #061080, #1b0680, #2f0680, #430680, #570680, #6b0680, #570680); */
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--dark-color);
        color: var(--light-color);
    }

    .single-button {
        background-color: rgba(0, 0, 0, 0.8);
        color: var(--light-color);
    }

    .button:hover {
        background-color: rgba(0, 0, 0, 0.6);
    }

    .button-text {
        color: var(--light-color);
    }

    header h1 {
        color: var(--light-color);
    }
}