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;
}

.frosted {
    background: rgba(0,0,0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    color: white;
}

.frosted img {
    border-radius: 1rem 1rem 0 0;
}

.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;
}

main {
    margin-top: 80px; /* space below navbar */
    margin-bottom: 60px; /* space above footer */
}

.card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: fadeInUpScale 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    user-select: none;
    transition-duration: 0.2s;
}

.card:hover {
    scale: 1.05;
}

/* stagger timings */
#minecraftCard {
    animation-delay: .1s;
}

#discordCard {
    animation-delay: .2s;
}

#donateCard {
    animation-delay: .3s;
}

@keyframes fadeInUpScale {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.navbar .navbar-toggler {
    align-self: center; /* vertically center in navbar */
}

.navbar-toggler:focus {
    box-shadow: none;
    border: solid 1px rgba(255, 255, 255, 0.25);
}