.logoBox{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    gap: 20px;
    backdrop-filter: blur(5px);
    background-color: rgba(0,191,255, 0.075);
    z-index: 999;
    padding: 5px 5px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}

.left{
    display: flex;
    align-items: center;
}

.right{
    color: #333;
    font-weight: bold;
}

.left>span{
    margin-left: 5px;
    color: #333;
    font-weight: bold;
    font-size: 16px;
}

.logo{
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo>img{
    width: 80%;
    height: 80%;
}