body {
    background-color: #67ACFE;
    margin: 0;
    height: 200vh;
    /* Hide scrollbar but allow scrolling */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}
body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
/* ...existing code... */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}
html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}


.BlobBg{
    position: absolute;
    top: -15%;
    left: -2%;
    width: 105%;
    height: 105%;
}

.ContentBlob{
    position: absolute;
    bottom: -185%;
    left: -47%;
    width: 200%;
    height: 200%;
    z-index: -1;
}

.headerBar{
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 60px;
    background-color: rgba(0, 157, 255, 0.25);
    z-index: 1000;
}

.headerTitle{
    display: flex;
    position: absolute;
    align-items: center;
    left: 20px;
}

.headerLogo{
    height: 30px;
}

.headerText,
.headerText-NoAni {
    font-family: "Rubik", sans-serif;
    font-size: large;
    font-weight: bolder;
    color: white;
    width: auto;
    height: auto;
    margin-left: 10px;
}

.headerText {
    transition: transform 0.2s ease;
}

.headerText:hover {
    transform: scale(1.1);
}

.headerText:active {
    transform: scale(0.95);
}


.headerLinks{
    position: absolute;
    right: 40px;
    top: 0;
    display: flex;
    gap: 20px;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}

.headerLink{
    text-decoration: none;
}


.loginButton{
    font-family: "Rubik", sans-serif;
    font-size: large;
    font-weight: bolder;
    color: white;
    background-color: #FF4747;
    border: none;
    border-radius: 1000px;
    padding: 10px 25px;
    cursor: pointer;
    width: auto;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.loginButton:hover{
    transform: scale(1.05);
}

.loginButton:active{
    transform: scale(.95);
}

.headerArrow{
    position: absolute;
    top: 65px;
    right: 65px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.2s ease;
}


