#resizeLowpx
{
    display: none;
    min-width: 90vw;
    width: 50vw;
    height: 40vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(40, 32, 94, 0.8);
    flex-direction: column;
    align-items: center;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1.2em;
}

#resizeLowpx p
{
    flex: 3;
    text-align: center;
    padding: 20px;
}

#resizeLowpx nav
{
    flex: 1;
    width: 100%;
}

#resizeLowpx > *
{
    display: flex;
    justify-content: center;
    align-items: center;
}

#resizeLowpx a
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background .15s linear;
}

#resizeLowpx a:hover
{
    background-color: rgba(255, 255, 255, 0.2);
}




@media (max-width: 1000px) {
    main
    {
        display: none;
    }

    #resizeLowpx
    {
        display: flex;
    }
    
}