:root {
    --accentbright: #f51aa4;
    --accentmed: #bd4089;
    --accentdark1: #683257;
    --accentdark2: #42213d;
    --darkerglass: rgba(0, 0, 0, .75);
    --darkglass: rgba(0, 0, 0, .55);
    --clear: aliceblue;
    --medium: #66798f;
}

body {
    color: var(--accentbright);
    background-color: var(--clear);
    background-image: url("/images/bg_alt1.png");
    font-family: 'Ubuntu Mono', monospace;
}

h1 {
    text-align: center;
    font-family: 'Ubuntu Mono', monospace;
    font-weight: 100;
}

.blackopac {
    background: var(--darkglass);
    /* background-color: black; */
    /* opacity: 0.5; */
    display: flex;
    justify-content: center;
    align-items:center;
    margin: 0 auto;
    width:350px;
    height: 70px;
    border-radius: 15px;
}

.blackopac2 {
    background: var(--darkglass);
    /* background-color: black; */
    /* opacity: 0.5; */
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    text-align:left;
    width: 90%;    
    border-radius: 15px;
}

.blackopac2 p {
    margin-left:5vh;
    margin-right:5vh;
    margin-top: 10px;
}

.contactlink {
    color: var(--accentbright);
    font-size: 25px;
    transition: color 0.1s;
}

.contactlink:hover {
    color: var(--clear);
    font-size: 25px;
}

.navbar {
    background-color: var(--clear);
    left: 0;
    top:0;
    position: fixed;
    width: 100%;
    height: 5vh;
    z-index: 99;
    color:var(--accentbright);
    text-align: center;
    font-size: 20px;
    box-shadow: 1px 2px;

}

.navbar ul {
    margin-top: 5px;
    list-style: none;
    padding:0;
    display: flex;
}

.navbar li {
    margin: 0 10px;
}

.navbar a {
    text-decoration: none;
    color: var(--accentbright);
    transition: color;
    transition-duration: 0.25s;
}

.navbar a:hover {
    background-color: var(--accentbright);
    color: var(--clear)
}

.page {
    position: absolute;
    top: 5vh;

    height: 200%;
    left: 8%;
    right: 8%;
}

.page_bg {
    position: fixed;
    height: 100%;
    left: 8%;
    right: 8%;

    background-color: var(--darkerglass);
}



/* not a row anymore*/
.post_row {
    display: flex;
    justify-content: center; /* dont think this does anything */
    align-items: center;
    flex-direction: column;
    /* justify-content: space-between; */
    margin-left: 5vh;
    margin-right: 5vh;
    margin-top:5vh;
}

.post {
    background-color: var(--darkglass);
    display:flex;
    align-items: center;
    flex-direction: column;
    padding:10px;
    /* width:180px;
    height: 180px; */
    /* Should probably use aspect ratios... */
    max-width: 650px;
    border-radius: 8px;
}

.post_img {
    background-color: black;
    height: 100%;
    width: 100%;
    border-radius: 5px 5px 0 0;


}

.post_img img {
    height: 100%;
    width: 100%;
    border-radius: 5px 5px 0 0;
}

.post_desc {
    background-color: var(--clear);
    width:100%;
    height: 100%;
    border-radius: 0 0 5px 5px;
    text-align: center;
}

.post_desc a {
    text-decoration: underline;
    font-size: 1.5rem;
    color: var(--accentbright);
    
}

.post_desc p {
    margin-top: 1vh;
    margin-left: 2vh;
    margin-right: 2vh;
    margin-bottom: 2vh;
    text-align: left;
    color:var(--medium);
    font-size: 1rem;
}

.post_date {
    text-align: right !important;
    margin-bottom: 1vh !important;
    font-style: italic;    
}

.blog_headerimg {
    margin: 2vh;
    background-position: center center;
    margin-bottom: 0;
}

.blog_img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:50%;
    justify-content: center;
    align-items: center;
    background-position: center center;
}

.blog_content {
    font-size: medium;
}


.blog_content p {
    color:var(--clear);
}

.blog_content h4 {
    color: var(--accentbright);
    text-align: center;
}

.blog_content h2 {
    color: var(--accentbright);
    text-align: center;
}

.blog_content a {
    color:var(--accentbright);
}

.blog_content ul {
    margin-left: 4vh;
}

.img_caption {
    top:0;
    margin: 0;
    margin-top: 0;
    padding: 0;
    text-align: center;
    color: var(--accentbright) !important;
    font-style: italic;
    font-size: small;
}