@font-face{
    font-family: "Conthrax";
    src: url("Fonts/Conthrax-SemiBold.otf") format("OpenType");
}

html, body{
    height: 100%;
    margin: 0;
    font-family: "Conthrax";
    
}

#page-layout {
    width: 1100px;
    max-width: 95vw;

    height: calc(100vh - 20px);

    display: grid;
    grid-template-columns: 1fr 190px;
    gap: 14px;

    align-items: stretch;
}

#container{
    border:  black 7px solid;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 15px;
    
    background-color: rgba(0, 0, 0, 0.55);
    
    background-size: contain;
    background-position: center;
    
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

#logo-wrap{
    position: sticky;
    top: 0;
    z-index: 10;
    text-align: center;
    padding: 8px 0 12px 0;
    background-color: rgba(70, 255, 90, 0.55);
    border: 3px solid black;
}

#site-title{
    display: inline-block;
    height: auto;
    animation: bob 2.5s ease-in-out infinite;
    width: 200px;
    
}

#right-sidebar {
    border: 7px solid black;

    background-color: rgba(0, 0, 0, 0.85);

    padding: 10px;

    box-sizing: border-box;

    height: 100%;

    overflow-y: auto;
}

#right-sidebar a {
    display: block;

    margin-bottom: 10px;
    padding: 8px;

    text-align: center;

    color: rgba(70, 255, 90, 1);
    text-decoration: none;

    background-color: rgba(0, 0, 0, 0.9);

    border: 3px solid rgba(70, 255, 90, 0.8);

    box-shadow: 3px 3px 0 rgba(70, 255, 90, 0.25);
}

#right-sidebar a:hover {
    background-color: rgba(70, 255, 90, 0.2);
}


.content-heading{
    color: black;
    line-height: 1.2;
    text-align: center;
    font-size: 32px;
}

.content-heading-wrapper{
    background-color: rgba(70, 255, 90, 1);
    border: 3px solid black;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
    padding: 8px;
    margin: 16px 0 14px 0;
    text-align: center;
}

.content-wrapper {
    background-color: rgba(0, 0, 0, 0.9);
    color: rgba(70, 255, 90, 1);

    border: 3px solid rgba(70, 255, 90, 0.7);

    padding: 8px;
    margin: 16px 0 8px 0;
    text-align: left;
}

.content-wrapper img{
  max-width: 70%;
  height: auto;
  display: block;
  margin: 8px auto;
  border: 3px solid black;
  box-sizing: border-box;

}

body {
    background-image: url(Images/Fallout_Shrine_Background.png);
    background-repeat: repeat-x;
    background-position: 0 center;
    background-size: auto 100%;

    overflow: hidden;
    margin: 0;

    animation: scroll-space 60s linear infinite;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
}

.art-piece {
    margin: 0 0 18px 0;
}

.art-caption {
    text-align: center;
    margin-top: 6px;
    font-size: 18px;
    line-height: 1.2;
    color: rgba(70, 255, 90, 1);
}

.art-title {
    font-size: 20px;
}

@keyframes bob{
    0% {transform: translateY(0);}
    50% {transform: translateY(-6px);}
    100% {transform: translateY(0);}
}

@keyframes scroll-space{
    from{
        background-position: 0 center;
    }
    to{
        background-position: -1024px center;
    }
}

@media screen and (max-width: 768px) {

    html {
        width: 100%;
        min-height: 100%;
        margin: 0;
        padding: 0;
    }
}