body{
    width: 95%;
    font-size: 12px;
    background-color: #fafdff;
    background-image: url('/atpi/doodle/bg_admpn.png');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: right bottom;
    font-family: 'Zen Maru Gothic', serif;
}

a:link, a:visited{
    text-decoration: none;
    color: black;
}

a:hover{
    text-decoration: none;
    color: #cd0822;
}

#columns{
    display: table;
}

img{
    background-color: white;
}

nav{
    position: fixed;
    z-index: 0;
    top: 0;
}

main#turedure article{
    text-shadow: 3px 3px 5px rgba(33, 33, 33, 0.1);
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(1px);
    border-radius: 5px;
    padding: 0 12px 2px 12px;
    margin-bottom: 8px;
}

main#turedure article h2{
    border-bottom: 1px dotted black;
}

main#turedure article p::before{
    content: "■";
}

main#turedure article footer{
    border-top: 1px dotted black;
}

img.expand{
    cursor : pointer;
}

#reduce{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
     width: 100vw;
    height: 100vh;

    background-color: rgba(0, 0, 0, 0.8);

    justify-content: center;
    align-items: center;

    display:none;
}

#expand_img{
    background-color: black;
    max-width: 100vw;
}

@media screen and (min-width: 481px){
    nav{
        display: table-cell;
        flex-flow: column;
        width: 150px;
    }

    nav a{
        display: block;
    }

    main{
        display: table-cell;
        padding-left: 150px;
    }

    main#turedure article{
        width: 800px;
    }
}

@media screen and (max-width: 480px){
    nav{
        width: 100vw;
        height: 80px;
        background-color: #fafdff;
        z-index: 10;
    }

    nav h1{
        margin-bottom: 10px;
    }

    main{
        padding-top: 80px;
    }
}