@import url('https://fonts.googleapis.com/css2?family=Arima:wght@100..700&display=swap');

:root
{
    /*Light does NOT refer to light mode, simply a light background*/
    --textColour_Light: #121212;

    --textColour_Dark: #f0f0f0;
}

html 
{
    font-family: "Arima", system-ui;
}

#image-placeholder-169
{
    background-color: rgb(80, 80, 80);
    border-radius: 5px;
    width: 100%;
    aspect-ratio: 16 / 9;     

    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
    display: flex;
    
    transition-duration: 150ms;
}

#image-placeholder-169:hover
{
    transition-duration: 150ms;
    border-radius: 10px;
}

.right-aligned
{
    text-align: right;
    font-style: italic;
}

header
{
    position: fixed;
    min-height: 3dvh;
    margin: 0;
    padding: 25px;
    width: 100%;
    background-image: 
    repeating-linear-gradient(
        45deg,
        transparent 0px,
        transparent 14px,
        orange 15px,
        orange 30px,
        transparent 31px,
        transparent 40px
      );    
    text-align: center;
    justify-content: center;
    align-content: center;
}

header h3
{
    font-weight: bolder;
}


/*Handy-Layout*/

@media (max-width: 768px) 
{

    body
    {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .main
    {
        height: 100dvh;
    }
    
}

/*PC-Layout*/

@media (min-width: 769px)
{

    body
    {
        background-color: white;
        margin: 0;
        padding: 0;

        align-content: center;
        justify-content: center;
        align-items: center;
        align-self: center;
    }

    main
    {
        max-width: 1000px;
        height: 100vh;

        margin: auto;
        padding-top: 50px;
        padding-bottom: 50px;

        padding-right: 25px;
        padding-left: 25px;
        color: var(--textColour_Light);
        display: flex;
        flex-direction: column;
    }

    footer
    {
        background-color: black;
        height: 25vh;
        color: var(--textColour_Dark);

        justify-content: center;
        display: flex;
    }

    #footer-layout-center
    {
        max-width: 1000px;
        width: 100%;
    }

}