body{
    --theme-color-primary: rgba(255, 255, 255, 0.9);
    --theme-color-secondary: black;
    --theme-accent: #8c5c09;
}
@media screen and (prefers-color-scheme:dark){
    body{
        --theme-color-primary:rgba(0, 0, 0, 0.9);
        --theme-color-secondary:white;
        --theme-accent: #42c0ff;
    }
}

body{
    color:var(--theme-color-secondary);
    background-color: var(--theme-color-primary);
    background-image: url(/res/bg5.png);
    background-size: 15vh;
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-evenly;
    width:100%;
    margin:0;
    padding-left:0.25rem;
    padding-top:1rem;
    overflow-x: hidden;
    font-weight: 500;
}

.spacer{
    width:10vw;
}

a,a:visited,hr{
    color:var(--theme-accent);
}


hr{
    width:100%;
    color:var(--theme-accent);
    margin-top:1rem;
    margin-bottom:1rem;
}

iframe,
video,
img,
audio{
    max-width:100%;
    max-height: 30vh;
    margin:1.5rem;
}
#profile img {

}
audio{
    width:80%;
}
#profile{
    margin-bottom:1rem;
    width: fit-content;
    max-width: 80rem;
    flex-shrink: none;
    
}
#profile-details{
    display:flex;
    flex-direction: column;
    align-items: center;
}
#profile-links{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
#profile-links>a{
    margin:0.5rem;
}

#posts{
    margin-bottom:1rem;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 40rem;

}
.post{
    width:100%;
    word-wrap: break-word;
    margin-bottom:1rem;
}
.post h2{
    margin-top:0;
}

#profilephoto{
    margin:1rem;
    max-width: 10rem;
    border-radius: 50%;
    border: 0.5rem solid var(--theme-accent);
}
section{
    width: 100%;
}
#profile>nav,
#profile>div{
    display:flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content:space-evenly;
    flex-wrap: wrap;
}
#profile>#details{
    flex-direction: column;

}

nav{
    display:flex;
    flex-direction: row;
    align-items: baseline;
    justify-content:space-evenly;
    flex-wrap: wrap;
}
nav>a{
}


article,main > div,main>nav{
    display:flex;
    flex-direction: column;
    align-items: center;
    padding:1rem;
    background-color: var(--theme-color-primary);
    color: var(--theme-color-secondary);
    border:0.25rem solid var(--theme-accent);
    backdrop-filter: blur(0.1rem);
    border-radius: 1rem;
    margin-bottom:1.5rem;
    width:90%;
}

article p,
article h3,
article ul,
article ol,
article table{
    text-align: left;
    width:90%;
}
article img{
    
}

blockquote {
    margin-left:2rem;
    padding-left:1rem;
    border-left:0.5rem solid var(--theme-accent);
}

.gallery{
    max-width:40vw;
}

audio{
    padding:1rem;
}

.post-tags{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    width:80%;
    font-weight: bolder;
    font-size:1.25rem
}
@media screen and (orientation: portrait){
    body{
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: none;
        padding:0;
        font-size:1rem;
    }
    #profile,#posts{
        width:90%;
        max-width: 90vw;
        
    }

    #profile a>img{
        display:flex;
        flex-direction: column;
        align-items: center;
        width:100%;
    }
}