body {
    background-color: #000;
    color: #fff;
    font-family: "Alan Sans", sans-serif;
    font-optical-sizing: auto;
}

nav {

    font-size: 1.25rem;
    /*background: #EEAECA;*/
    /*background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);*/
}
nav div {
    padding: 0.3rem 0;
}

#logo {
    font-family: "Chonburi", sans-serif;
    opacity: 0.9;
    transition: opacity 0.15s;
    margin-right:1rem;
}
img.logo {
    /*filter: hue-rotate(40deg);*/
    margin: 0 0  24px;
    /*padding: 1em;*/
}
a.navbar-brand {
    padding: 0;
    margin: 0;
}
.navbar-brand {
    font-size: 3rem;
}
#logo:hover {}

#logo:hover {
    opacity: 1;
}
a.nav-link {
    background: rgba(255, 255, 255, 0);
    border: solid 1px rgba(255, 255, 255, 0);
    border-radius: 0.5rem;
    padding: 0.35rem 1.5rem;
    margin: 0.25rem;
    transition: background-color 0.15s;
    user-select: none;
    cursor: pointer;
    text-align: center;
}

a.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border: solid 1px rgba(255, 255, 255, 0.25);
}
.btn {
    border-radius: 0.5rem;
}
.copy-text {
    cursor: pointer;
}
.disabled:hover {
    cursor: not-allowed;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#bg-video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.card {
    background: rgba(255, 255, 255, 0.2); /* semi-transparent */
    backdrop-filter: blur(10px);          /* blur background behind */
    -webkit-backdrop-filter: blur(10px);  /* safari support */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    color: white; /* text stands out on video bg */
}