body
{
    background-image: url("/assets/img/Radiance.jpg");
    background-position: top;
    background-attachment: fixed;
    background-size:cover;
    /* color: white; */
    font-family: Roboto, Ubuntu, Cantarell, 'Open Sans';
}
h1, h2, h3
{
    margin: 5px;
}
a, a:link, a:visited
{
    color: darkgreen;
    text-decoration: none;
    font-size: 1.2rem;
}
a:hover
{
    font-style: italic;
    text-decoration: underline;
    font-weight: bold;
}


.grid2columns
{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    justify-content: center;
}
.grid3columns
{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: center;
    justify-content: center;
}

.masterContainer
{
    /* min-width: 600px; */
    max-width: 800px;
    width: 100%;
    margin: auto;
    /* margin-top: 150px; */
    background-color: rgba(255, 255, 255,0.5);
    border-radius: 10px;
    margin-top: 5svh;
    margin-bottom: 5svh;
    padding: 40px;
    padding-top: 25px;
    padding-bottom: 25px;
    box-shadow: 2px 2px 16px black;
    backdrop-filter: blur(12px);
}
.contentContainer
{
    padding: 15px;
    /* background-color: rgba(75, 150, 50, 0.8); */
    border-radius: 5px;
    /* display: grid;
    grid-template-columns: 30% auto;
    column-gap: 32px; */
    /* box-shadow: 2px 2px 8px black; */
    /* backdrop-filter: blur(8px); */
}

.socialsGridContent
{
    margin-top: 10px;
    margin: auto;
}
#socialsGridDiv
{
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.225rem;
}

#ytVideoIframeDiv
{
    /* border-radius: 25px; */
    max-width: 100%;
    max-height: 480px;
    width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 25px;
}
.videoIframe
{
    border-radius: 10px;
    height: 360px;
    width: 100%;
    box-shadow: 2px 2px 4px black;
    aspect-ratio: 16/9;
}

@media only screen and (max-width: 900px) 
{
    .masterContainer
    {
        width: 80%;
    }
}
@media only screen and (max-width: 800px)
{
    #contentContainer
    {
        grid-template-columns: 35% auto;
    }
    .masterContainer
    {
        padding: 25px;
    }
    .masterContainer
    {
        width: 85%;
    }
}
@media only screen and (max-width: 700px)
{
    #brbImg
    {
        max-height: 250px;
    }
    #socialsGridDiv
    {
        grid-template-columns: repeat(2,1fr);
        grid-row-gap: 10px;
    }
}
@media only screen and (max-width: 600px) 
{
    .masterContainer
    {
        padding: 10px;
        width: 90%;
    }
    #contentContainer
    {
        grid-template-columns: 1fr;
        text-align: center;
    }
    #brbImg
    {
        max-height: 150px;
        width: 40%;
    }
    ul
    {
        list-style: none;
    }
    .videoIframe
    {
        height: 320px;
    }
}

@media only screen and (max-width: 500px) 
{
    #socialsGridDiv
    {
        grid-template-columns: repeat(1,1fr);
        grid-row-gap: 10px;
    }    
    .videoIframe
    {
        height: 240px;
    }
}