.desktopheader{
    /*display: none;
    pointer-events: none;*/
}

.mobileheader{
    /*display: flex;*/
    height: 70px;
    width: 100%;
    flex-direction: column;
    top: 0;
    gap: 2px;
    color: var(--font-color);
    background-color: var(--background-color);
    z-index: 3000;
}

.margin-top-same-height-as-mobileheader{
    margin-top: 70px;
}

.logo{
    font-family: var(--unruly-font);
    font-size: 15px;
    text-transform: uppercase;
    pointer-events: all;
}

.logosubtitle{
    font-size: 9px;
    font-weight: 300;
    font-family: var(--main-font);
    opacity: .8;
    pointer-events: all;
    text-shadow: var(--text-shadow);
}

.mobileheader-instagram-icon{
    font-size: 18px;
    opacity: 70%;
    margin-bottom: 1.6px;
    position: absolute;
    left: 20px;
}

.mobileheader-menuicon{
    font-size: 20px;
    position: absolute;
    right: 20px;
    margin-bottom: 5px;
}

.mobilemenu{
    display: none;
    position: fixed;
    top: 0; left: 0;
    background-color: var(--background-color);
    z-index: 2999;
    width: 100%;
    height: 100%;
}

#safespace{
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.mobilemenupages{
    display: flex;
    font-family: var(--main-font);
    font-size: 25px;
    gap: 10px;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    color: var(--font-color);
    text-align: center;
}

.mobilemenupages-icons{
    font-size: 28px;
}

.mobile-menu-pages-link-container{ 
    position: absolute;
    bottom: 40px;
    z-index: 2000;
}

.mobilemenupages-links{
    min-height: 30px;
    padding: 0 10px;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background: var(--background-color-inverse);
    color: var(--background-color);
    border-radius: 100px;
}

.mobilemenu-ext-link-logo{
    font-size: 10px;
}

.instagram-logo-link{
    font-size: 16px;
}

.mbri-close{
    font-size: 15px;
    margin: 0 1.8px 5px 0;
}

.socials-decoration > *{
    background: linear-gradient(to right, #ff5100, #ff00bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.youtube-decoration > *{
    background: -webkit-linear-gradient(#ff0000, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desktopheader{
    gap: 20px;
    display: flex;
    font-family: var(--main-font);
    color: var(--font-color);
    background: var(--background-color);
    position: sticky;
    top: 0;
    padding: 10px 0;
    z-index: 1000;
}

/* Code Under this line will be active when screen goes over specified "min-width" (this is Desktop style) */
@media only screen and (min-width: 600px){
    .mobileheader, .mobilemenu, .mobilemenupages{
        display: none;
    }

    .logo-and-subtitle-container{
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    .logo{
        font-size: 40px;
        text-shadow: var(--text-shadow);
    }

    .logosubtitle{
        font-size: 11px;
        font-weight: 300;
        opacity: .8;
    }
    
    .menupages-pc-container{
        gap: 20px;
        padding: 5px 10px 5px 10px;
        border-radius: 5px;
        color: var(--background-color);
        background: var(--background-color-inverse);
        box-shadow: var(--box-shadow);
        pointer-events: all;
    }
    
    .menupages-pc{
        font-size: 13px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
}

@media(prefers-color-scheme: light){
    .mobileheadershadow{
        box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.1);
    }

    .menupages-pc-container{
        box-shadow: none;
    }
}