body {
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    animation: body-spawn 0.67s linear;
    margin: 0;
    transition: filter 1s ease;
    filter: blur(0px) brightness(1);
}
body.fade-out {
    filter: blur(20px) brightness(0%);
}
html {
    background-color: #232533;
    animation: bg-colour-spawn 2s linear;
}
@keyframes body-spawn {
    0%   { filter: blur(10px); }
    100%  { filter: blur(0px); }
}
@keyframes bg-colour-spawn {
    0%   { background-color: #000000; }
    20%   { background-color: #000000; }
    100%  { background-color: #232533; }
}
.head {
    margin: 0px;
    z-index: -1;
    position: absolute;
    top: -30px;
    left: 0;
    animation: head-spawn 2s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
@keyframes head-spawn {
    0%   { transform: translateY(-800px); }
    10%   { transform: translateY(-800px); }
    100%  { transform: translateY(0px); }
}
.logo {
    z-index: 2;
    filter: drop-shadow(0px 0px 32px rgba(0, 0, 0, 0.4));
    transition: all 0.2s ease-out;
    animation: logo-spawn 2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo-container {
    position: absolute;
    margin-top: 310px;
    width: 100%;
    display: flex;
    justify-content: center;
    animation: logo-jiggle 3s ease-in-out;
}
.ring {
    position: fixed;
    transform: translateY(50%) scale(10);
    z-index: 100;
    animation: ring-spawn 2s linear;
    opacity: 0;
    pointer-events: none;
}
@keyframes logo-spawn {
    0% {
        transform: scale(0);
        filter: drop-shadow(0px 0px 32px rgb(255, 255, 255));
    }
    20% {
        transform: scale(0);
        filter: drop-shadow(0px 0px 32px rgba(255, 255, 255));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0px 0px 32px rgba(0, 0, 0, 0.4));
    }
}
@keyframes logo-jiggle {
    0% {
        transform: scaleX(1) scaleY(1);
    }
    20% {
        transform: scaleX(1.04) scaleY(0.96);
    }
    40% {
        transform: scaleX(0.96) scaleY(1.04);
    }
    60% {
        transform: scaleX(1.02) scaleY(0.98);
    }
    80% {
        transform: scaleX(0.99) scaleY(1.01);
    }
    100% {
        transform: scaleX(1) scaleY(1);
    }
}
@keyframes ring-spawn {
    0% { transform: translateY(50%) scale(0); filter: drop-shadow(0px 0px 32px rgb(255, 255, 255)); opacity: 0.1;}
    20% { transform: translateY(50%) scale(0); filter: drop-shadow(0px 0px 32px rgba(255, 255, 255)); opacity: 0.1;}
    60% { transform: translateY(50%) scale(5); filter: drop-shadow(0px 0px 32px rgba(255, 255, 255, 0)); opacity: 0.04;}
    100% { transform: translateY(50%) scale(10); filter: drop-shadow(0px 0px 32px rgba(255, 255, 255, 0)); opacity: 0;}
}
.logo:hover {
    filter: drop-shadow(0px 0px 32px rgba(0, 0, 0, 0.8));
    transform: scale(1.03);
}
.logo:active {
    filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 1));
    transform: scale(1.08);
}
.center-container {
    display: flex;
    justify-content: center;
}
.menu-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    height: 69px;
    z-index: 999;
    top: 10px;
    outline: 4px solid #fafafa86;
    background-color: #232533e8;
    transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, top 0.2s ease-in-out, outline 0.2s ease-in-out;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    animation: menubar-spawn 2s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes menubar-spawn {
    0%   { transform: translateY(-200px); }
    10%   { transform: translateY(-200px); }
    100%  { transform: translateY(0px); }
}
.menu-bar:hover {
    background-color: rgb(60, 60, 80);
    box-shadow: 0 10px 80px rgba(0, 0, 0, 1);
    top: 16px;
    outline: 4px solid #fafafa;
}
.menu-bar-text {
    margin-top: 6.5px;
    margin-left: 22px;
    margin-right: 22px;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #e4e43b, #e4852d 30%, #e7471f 60%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.menu-bar-links {
    font-size: 24px;
    transition: color 0.1s ease-in-out, text-shadow 0.1s ease-in-out;
}
.menu-bar-links a {
    display: flex;
    align-items: center;
    gap: 8px;
}
.menu-bar-links:hover {
    color: #aabeff;
    text-shadow: 0 0 10px #aabeff;
    filter: drop-shadow(0 3px 1px #000000)
}
a {
    text-decoration: none;
    color: inherit;
}
.divider {
    margin-left: 25px;
    margin-right: 25px;
    font-size: 18px;
    color: #ffffff;
}
.bees {
    filter: drop-shadow(0px 0px 32px rgba(0, 0, 0, 0.4));
}
.bee-1 {
    position: absolute;
    z-index: 100;
    top: calc(310px + 1vw);
    left: calc(50% - 30vw);
    animation: bee-float-1 2s ease-in-out infinite;
}
.bee-2 {
    position: absolute;
    z-index: 100;
    top: calc(310px - 5vw);
    right: calc(50% - 27vw);
    animation: bee-float-2 2.9s ease-in-out infinite;
}
.bee-3 {
    position: absolute;
    z-index: 100;
    top: calc(310px + 20vw);
    right: calc(50% - 35vw);
    animation: bee-float-3 3.5s ease-in-out infinite;
}
@keyframes bee-float-1 {
    0%   { transform: translateY(0px) rotate(0deg); }
    50%  { transform: translateY(-10px) rotate(-3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes bee-float-2 {
    0%   { transform: translateY(0px) scaleX(-1) rotate(22deg); }
    50%  { transform: translateY(-20px) scaleX(-1) rotate(25deg); }
    100% { transform: translateY(0px) scaleX(-1) rotate(22deg); }
}
@keyframes bee-float-3 {
    0%   { transform: translateY(0px) scaleX(-1) rotate(10deg); }
    50%  { transform: translateY(-14px) scaleX(-1) rotate(13deg); }
    100% { transform: translateY(0px) scaleX(-1) rotate(10deg); }
}
.page {
    position: absolute;
    top: calc(310px + 42vw);
    left: 0;
    width: 100%;
    text-align: center;
    color: #fafafa;
    font-size: 25px;
    animation: page-spawn 2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes page-spawn {
    0%   { transform: translateY(400px); filter: brightness(0) }
    100%  { transform: translateY(0px); filter: brightness(1)}
}
.menu-hypersocial {
    display: block;
    margin-left: auto;
    margin-right: 0;
}
.menu-hypersocial-margin {
    margin-right: 15px;
}
.menu-hypersocial-icon {
    display: inline-block;
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
    transform: scale(1);
    transition: filter 0.22s ease-in-out, transform 0.1s ease-in-out;
}
.menu-hypersocial-icon:hover {
    filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.75));
    transform: scale(1.2);
}
@keyframes bee1-spawn {
    0%   { transform: scale(0); }
    10%   { transform: scale(0); }
    100%  { transform: scale(1); }
}
@keyframes bee2-spawn {
    0%   { transform: scale(0); }
    20%   { transform: scale(0); }
    100%  { transform: scale(1); }
}
@keyframes bee3-spawn {
    0%   { transform: scale(0); }
    30%   { transform: scale(0); }
    100%  { transform: scale(1); }
}
.menu-links {
    display: flex;
    align-items: center;
}

.menu-dropdown {
    display: none;
}

.menu-dropdown-content {
    display: none;
    flex-direction: column;
    background-color: #232533e8;
    position: absolute;
    top: calc(100% + 16px);
    left: 86px;
    min-width: 150px;
    border-radius: 8px;
    outline: 4px solid #fafafa86;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}
.menu-dropdown-content.show {
    display: flex;
}

.menu-dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #fafafa;
    text-decoration: none;
}

.menu-toggle {
    width: 69px;
    height: 69px;
    margin-top: 20px;
    background-color: #232533e8;
    border: none;
    border-radius: 10px;
    outline: 4px solid #fafafa86;
    transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, top 0.2s ease-in-out, outline 0.2s ease-in-out;
    color: #ffffff;
    font-size: 30px;
}

.menu-toggle:hover {
    background-color: rgb(60, 60, 80);
    box-shadow: 0 10px 80px rgba(0, 0, 0, 1);
    outline: 4px solid #fafafa;
}

.menu-dropdown-content a:hover {
    background-color: rgb(60, 60, 80);
}
@media screen and (max-width: 1400px) {
    .menu-links {
        display: none;
    }

    .menu-dropdown {
        display: block;
    }
}
.page-item-left {
    background-color: #aabeff33;
    width: 100%;
    height: auto;
    display: inline-block;
}