body 
{
    margin: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #644117;
    overflow-x: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

/*body > iframe, html > iframe {*/
/*    max-width: 100%;*/
/*    overflow-x: hidden;*/
/*    display: block;*/
/*}*/


/*div {*/
/*    display: grid;*/
/*    grid-template-columns: auto auto auto;*/
/*    width: 95%;*/
/*    padding: 20px;*/
/*    margin: 0px;*/
/*    border: 3px solid #008000;*/
/*}*/

.title_container 
{
    align-items: center;
    justify-content: center;
    text-align: center;
}

.biline
{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.content_container 
{
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    /*grid-template-rows: auto;*/
    width: 95%;
    padding: 20px;
    margin: 0px;
    gap: 30px;
}

.table_content 
{
    display: grid;
    grid-template-columns: auto;
    /*width: 100%;*/
}

.video_content
{
    /*width: 100%;*/
    display: flex;
    justify-content: center;
}

.text_content
{
    /*width: 100%;*/
    display: flex;
    justify-content: center;
}

/*.dp {*/
/*    width: 100%;*/
    /*max-width: 1000px;*/
    /*min-width: 300px;*/
    /*display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    height: auto;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*    display: block;*/
/*}*/

.dpl {
    position: relative;
    left: auto;
}

h1
{
    font-family: 'Press Start 2P', system-ui;
    font-size: 40px;
    color: #ffffff;
    background-color: #009e00;
    padding: 30px;
    border-radius: 30px;
}

h2
{
    font-family: 'Press Start 2P', system-ui;
    font-size: 30px;
    color: #ffffff;
    background-color: #009e00;
    padding: 30px;
    border-radius: 30px;
}

p
{
    width: 100%;
    line-height: 2;
    font-size: 25px;
    font-family: 'Jersey 25', sans-serif;
    color: #ffffff;
    /*margin: 5px;*/
}

a
{
    color: #009e00;
}

.small
{
    font-size: 15px;
    color: #ffffff;
}


.page-wrapper {
    max-width: 100%;
    overflow-x: hidden;
    /*overflow-y: hidden;*/
    position: relative;
    box-sizing: border-box;
}

/*.ndp*/
/*{*/
/*    display: none;*/
/*}*/

/*@media screen and (max-width: 580px) and (min-width: 0px) */
/*{*/
/*    h1, p, .link-container {*/
/*        width: 80%;*/
/*    }*/
/*}*/

@media screen 
    and (max-width: 1500px) 
    and (min-width: 900px)
{
    .content_container 
    {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen 
    and (max-width: 900px) 
    and (min-width: 200px)
{
    .content_container 
    {
        grid-template-columns: 1fr;
    }
    
}