@font-face {
    font-family: IBM;
    src: url(/fonts/Web437_IBM_BIOS.woff);
}
@font-face {
    font-family: W95FA;
    src: url(/fonts/w95fa.woff);
}
html{
    height: 100%;
    background-blend-mode: screen;
    background-size: 20%;
    background-image: 
        url(/images/backgrounds/stars.gif),
        url(/images/backgrounds/stars3.gif);
    cursor: url(/images/cursors/Blade_Cursors/Blade_Normal.cur), auto;
}
body{
    max-height: max-content;
    min-width: 100%;
    margin: 0px;
    padding: 0px;
    padding-bottom: 20px;
    position: absolute;
}
.title{
    font-family: IBM;
    font-style: bold;
    font-size: 2vw;
    color: #910A67;
    text-align: center;
    text-shadow: #3C0753 .5vw 2px;
    user-select: none;
}

.layout{
    display: grid;
    grid-template-rows: 1fr;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-left: 5%;
    margin-right: 5%;
}
.layout_row{
    display: grid;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: 1fr 4fr;
    gap: 10px
}
.layout_column{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}


.box{
    background-color: black;
    color: aliceblue;
    font-family: W95FA;
    border-color: #3C0753;
    border-style: solid;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}
    .box text{
        display: block;
        padding: 5px 5px 5px 5px;
        text-align: center;

    }
    .box-title{
        background-color: #3C0753;
        color: #910A67;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        width: 100%;
    }
    .box nav{    
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-around;   
        gap:20px;
        font-family: W95FA;
        background-image: url(/images/backgrounds/Stars_03.gif  );
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 5px;
    }
        .box nav a:visited, a:link{
            color: white;
            text-decoration: none;
            width: 100%;
        }
        .box nav a:hover{
            font-style: italic;
        }
        .box a{
            display: flex;
            align-items: center;
            gap: 5px;
            max-width: fit-content;
        }

.gallery{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0px 0px 0px 0px;
    justify-content: center;
}
    .gallery.box{
        max-width: 30%;
    }
    .gallery img{
        max-width: 100%;
        display: block;
    }