body{
    margin:0;
    min-height: 100vh;
    background: black;
    --main-bg: rgba(255, 255, 255, 0.6);
    --solid-bg: white;
    --global-border-radius: 10px;
    --global-font: arial;
    --global-font-size: 16px;
    --global-font-color: black;
    --global-subtext-size: 14px;
    --global-subtext-color: gray;
    --global-border: 1px solid hsl(0, 0%, 70%);
    --global-box-shadow: 0 0 5px rgba(131, 131, 131, 0.5);
    --global-blur: 10px;
    --background-url: url(https://inori.neocities.org/bio/resources/background.jpg);
    --background-tinting: 1; /* 1 is off - less is darker, more is brighter */
    --global-symbolic-icon-invert: 0; /*0 don't invert, 1 invert*/
    /* visibility: hidden; */
}

/* Background */
.background{
    filter: brightness(var(--background-tinting));
    height: 100vh;
    width: 100vw;
    position: fixed;
    top:0;
    left: 0;
    background-image: var(--background-url);
    background-size: cover;
    z-index: -1;
}

/* Notififications */
.notif-container{
    box-sizing: border-box;
    padding: 10px 50px 10px 10px;
    /*padding: 10px 50px 10px 0;*/ /*Old UI Padding*/
    box-sizing: border-box;
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    user-select: none;
    pointer-events: none;;
    background: transparent;
    top: 0;
    left: 0;
    position: fixed;
    height: 100vh;
    width: 100vw;
    overflow:hidden;
    max-width: 100vw;
    gap: 10px;
    z-index: 1000;
}

.notif-container .toast{
    box-sizing: border-box;
    background: var(--solid-bg);
    padding: 10px;
    overflow: hidden;
    visibility: hidden;
    width:0;
    padding: 0;
    position: relative;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: rgb(255, 51, 211); /* progress color */
}

.toast label{
    box-sizing: border-box;
    color: var(--global-font-color);
    display: block;
    text-align: left;
    margin: 10px;
}

.toast-transition{
    transition: width 0.5s ease-out, opacity 0.5s ease-out, background-color 300ms linear;
    transition: width 0.5s ease-out, opacity 0.5s ease-out,
}

/* Main Column Layout */
.content{
    width: 60%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
    gap: 10px;
    padding: 10px;
    font-family: var(--global-font);
    font-size: var(--global-font-size);
    color: var(--global-font-color);
    align-items: center;

}

@media only screen and (max-width: 1080px) and (orientation: portrait) {
    .content{
        width: 95%;
    }
    .content div button.social-link:active{
        filter: brightness(0.8)
    }

 
}

/* Make elements flex*/
.content, .content div, button{
    display: flex;
    flex-direction: column;
    /* transition: background-color 300ms linear; */
}

/* Flexbox force row layout */
.content div.row-layout{
    flex-direction: row;
}

/* General Element Appearance */
.content div, button, .toast{
    box-sizing: border-box;;
    width: 100%;
    padding: 10px;
    background: var(--main-bg);
    border-radius: var(--global-border-radius);
    border: var(--global-border);
    box-shadow: var(--global-box-shadow);
    gap: 10px;
}

button{
    color: var(--global-font-color);
    flex-direction: row;
    align-items: center;
    font-size: var(--global-font-size);
    position: relative;
    overflow: hidden;
    user-select: none;
    touch-action: manipulation;
}

button img{
    height: 1em;
    width: 1em;
}

button.social-link img{
    position:absolute;
    flex: 0;
    height: 1em;
    max-width: 1em;
}

button label{
    flex: 1;
    text-align: center;
    user-select: none;
}

button:hover{
    filter: brightness(1.1);
    box-shadow: var(--global-box-shadow), 0 0 4px 1px rgb(255, 51, 211);
}

button:active{
    filter: brightness(0.8)
}

.symbolic-icon{
    filter: invert(var(--global-symbolic-icon-invert));
}
.social-link:hover{
    filter: unset;
}
.social-link:active{
    filter: brightness(1);
}

.social-link .social-connections-panel{
    position: absolute;
    top: 0; /* Align to the top of the parent */
    right: 0; /* Align to the right of the parent */
    bottom: 0; /* Align to the bottom of the parent */
    left: 0; /* Align to the left of the parent */
    border: none;
    opacity: 0;
    padding: 0;
    gap: 0;
    background: var(--solid-bg);
    transition: opacity 0.25s ease;
    display:flex;
    flex-direction: row;
}

.social-connections-panel:hover{
    opacity: 1;
}

.content .social-connection-button img{
    border-radius: 0;
}

.content .social-connection-button label{
    border-radius: 0;
}



.social-connection-button{
    display: flex;
    border-radius: 0;
    background: var(--solid-bg);
    border: none;
    box-shadow: none;
    text-align: center;
}

.social-connection-button:hover{
    box-shadow: unset;
}

.social-connection-button:active{
    filter: brightness(0.8)
}

.content div.transparent{
    background: none;
    border: none;
    box-shadow: none;
}

/* Images */
.content img{
    border-radius: var(--global-border-radius);
}

.avatar{
    max-width: 300px;
}

/* Labels */
label{
    font-family: arial;
    text-align: center;
}

/* Label Formatting */
.strong{
    font-weight: bold;
}

.heading{
    font-weight: bold;
    font-size: 16px;
    padding: 4px;
}

.subtext{
    font-size: var(--global-subtext-size);
    color: var(--global-subtext-color)
}

/* Content Alignment */
.content .align-left, .align-left label{
    align-items: flex-start; 
    text-align: left;
}

.content .align-right .align-left label{
    align-items: flex-end;
    text-align: right;
}