/* Public CSS */

@media screen and (min-width: 992px){
	html{
		font-size: 18px;
	}
}

@media screen and (max-width: 992px) and (min-width: 768px){
	html{
		font-size: 16px;
	}
}

@media screen and (max-width: 768px) and (min-width: 480px){
	html{
		font-size: 10px;
	}
}
@media screen and (max-width: 480px){
    html{
        font-size: 8.5px;
    }
}


*{
    border: 0;
	margin: 0;
	padding: 0;
}

a{
    text-decoration: none;
    cursor: pointer;
}

#headerBar{
    height: 3.6rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.glassHeaderBar{
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(8px);
    height: 3.5rem;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
}

#headerBarLogoLink{
    position: absolute;
    left: 1.7rem;
    top: 0.9rem;
    width: 1.7rem;
    height: 1.7rem;
    text-decoration: none;
}

#headerBarLogo{
    width: 1.7rem;
    height: 1.7rem;
}

#headerBarTitleLink{
    position: absolute;
    top: 50%;
    left: 4.2rem;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    text-decoration: none;
}

#headerBarTitleImg{
    display: block;
    height: 1.1rem;
    width: auto;
}

#headerBarLinkSpan{
    position: absolute;
    left: 11rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: flex-start;
}

.headerBarLink{
    position: relative;
    left: 0;
    top: 0;
    font-size: 0.75rem;
    margin-right: 1.9rem;
    text-decoration: none;
    color: #efe6f8;
    line-height: 1.5;
}

#headerBarRightSpan{
    position: absolute;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    height: 1.55rem;
    display: flex;
    justify-content: flex-end;
}

.headerBarRightLink{
    position: relative;
    right: 0;
    top: 0;
    text-decoration: none;
    justify-content: flex-start;
    margin-right: 1.4rem;
}

.headerBarDropImg{
    position: relative;
    top: -0.06rem;
    left: 0;
    height: 0.85rem;
    width: auto;
}

#headerBarSearchImg{
    position: inherit;
    top: -0.11rem;
    left: 0;
    width: auto;
    height: 0.85rem;
}

#headerBarUserLink{
    position: relative;
    top: 0;
    left: 0;
    font-size: 0.75rem;
    margin-right: -0.17rem;
    color: #efe6f8;
}

#headerBarLine{
    margin: 0;
    align-self: center;
    size: 1px;
    color: rgba(137, 137, 137, 0.75);
    position: absolute;
    top: 3.5rem;
    left: 0;
    right: 0;
}

.bottomInfo{
    font-size: 1.0rem;
    line-height: 1.8rem;
    color: #f3e7ff;
    text-decoration: none;
    transition: color 0.3s;
}

a.bottomInfo:hover{
    color: #d1a0fe;
}

.linkImg{
    height: 100%;
    width: auto;
}