*
{
    /* changes sizing model for overall site */
    box-sizing: border-box;
}
html
{
    font-family:'Courier New', Courier, monospace, arial;
}

body
{
    font-family:'Courier New', Courier, monospace, arial;
    line-height: 1.5;
    /* Purple from logo background background-color: #9966cc; */
    text-align: center;
    margin-block: 5px;
    margin-inline: 10px;
}

header
{
    padding-inline: 15px;
    padding-block: 5px;
    background-color: rgba(153, 102, 204, 0.711);
    box-shadow: 3px 3px 5px #00000075;
}

/* main
{ 
    border-width: 0px 5px 5px 0px;
}
*/

footer
{
    padding-inline: 15px;
    padding-block: 5px;
    background-color: rgba(153, 102, 204, 0.711);
    text-align: start;
    margin-block: 5px;
    box-shadow: 3px 3px 5px #00000075;
}

h1
{
    line-height: 1.15;

    @media (width < 720px) {
        justify-content: center;
    }
}

/*
section
{
    border-block-end: 5px;
    border-inline-end: 5px;
    border-block-end-style: solid;
    border-inline-end-style: solid;
    border-color: #00000055;
}
*/
section
{
    box-shadow: 3px 3px 5px #00000075;
}

a
{
    color: inherit;
}

a:hover,
a:focus-visible
{
    color:#96c;
}

img
{
    display: block;
    max-inline-size: 100%;
    height: auto;
}

/********** Classes **********/

.testBorder
{
    border-style:dotted;
    border-color: aqua;
}

.extraInfo
{
    color: #ccc;
}

.purpleFont
{
    color: #96c;
}

.bannerBg
{
    background-image: url(../images/gamerfries_youtube_banner.jpg);
    background-position: center;
    background-size:cover;
}

.wrapper
{
    max-inline-size: 1440px;
    margin-inline: auto;

    /* legacy support to default color when browser doesn't support */ 
    /*color:#000; */
    -webkit-text-fill-color: #96c;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
}

.twoColumn
{
    /* justify-content: center; */
    display: grid;
    gap: 1rem;

    @media (width > 720px) {
        grid-template-columns: 1fr 1fr;
        justify-content: space-between;
    }
    @media (width < 400px) {
        font-size: 0.65rem;
        /* justify-content: center; */
    }
}

.twoColumn > div
{
    min-width: 0;
}

.bottomEndOrientation
{
    text-align: end;
}

.primaryNav ul
{
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 1.05rem;
    list-style: none;
    margin:0;
    padding: 0 5px 0 0;
}

.primaryNav a
{
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

.primaryNav a:hover,
.primaryNav a:focus-visible
{
    color: #96c;
}

.alignEnd
{
    padding: 0 5px 0 0;
    text-align: end;
}

.alignCenter
{
    align-items: center;
}