html
{
    height: 100%;
    margin: 0;
    padding: 0;
}

.row
{
    display: flex;
    flex-direction: row;
}

.column
{
    display: flex;
    flex-direction: column;
}

.space
{
    flex: 1;
}

body
{
    margin: 0;
    padding: 0;
    border: 0;
    
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header
{
    background-color: #201e6a;
    align-items: center;
}

main
{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;
    border: 0;
    
    flex: 1;
    background: #cccccc url(../assets/background.webp) no-repeat center / cover;
}

.page-container
{
    display: block;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;
    border: 0;
}

footer
{
    background-color: #201e6a;
    display: grid;
    align-items: center;
}

footer div
{
    display: grid;
    align-items: center;
    padding: 0 2%;
    margin: 0;
    border: 0;
}

.social-media-access
{
    background: none;
    border: none;
    display: grid;
    align-items: center;
    padding: 1%;
}

.menu-button
{
    border: 0;
    margin: 0;

    flex-shrink: 1;

    font-family: "Tagesschrift", system-ui;
    color: #E2B25B;
    background-color: transparent;

    transition: all 0.3s ease;
}

.active
{
    border: 1px solid #E2B25B;
}

.copyright
{
    font-family: "IM Fell DW Pica", serif;
    color: #E2B25B;
}

.social-media-access
{
    color: #E2B25B;
}

@media (pointer: fine)      /*PC*/
{
    .menu
    {
        place-items: center;
        margin: 1% 0;
    }

    .menu-button
    {
        font-size: 14px;
    }

    .menu-button:hover, .active
    {
        font-size: 20px;
    }
    
    .copyright
    {
        font-size: 12px;
    }

    .social-media-access
    {
        font-size: 14px;
    }
}

@media (pointer: coarse)    /*Mobile*/
{
    .menu
    {
        place-items: center;
        margin: 2% 0;
    }

    .menu-button
    {
        font-size: 10px;
    }

    .active
    {
        font-size: 14px;
    }

    .copyright
    {
        font-size: 10px;
    }

    .social-media-access
    {
        font-size: 12px;
    }
}