*
{
    box-sizing: border-box;
}

body
{
	margin: 0;
	padding: 0;
    background: rgb(2,0,36);
    background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(44,4,82,1) 55%, 
                rgba(178,82,161,1) 79%, rgba(102,161,210,1) 100%);
}

label
{
    font-family: "Orbitron";
    color: #f2f2f2;
    margin-left: 20px;
}


.container
{
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100vh;
    perspective: 350px;
}

.grid
{
    z-index: -10;
	width: 200%;
    height: 700px;
	position: absolute;
	bottom: -20%;
	left: -55%;
	display: block;
	background: #2c0452;
    background-image: linear-gradient(#b252a1 4px, transparent 1px), 
                        linear-gradient(to right, #b252a1 4px, transparent 1px);
	background-size: 100px 100px;
	background-position: 0% 00%;
	animation: move 20s linear infinite alternate;
	transform: rotateX(65deg) scaleX(1.2);
}

.screen
{
    z-index: 4;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(cyan, magenta);
    background-size: 100% 1%;
    opacity: 0.3;
    animation: move 20s linear infinite alternate;
}

.run-line
{
    z-index: 3;
    position: absolute;
    width: 100%;
    height: 15%;
    background-image: linear-gradient(#00000000, #bababa, #00000000);
    opacity: 0.3;
    animation: run 4s linear infinite;
}

@keyframes run
{
    from { transform: translateY(0px); }
    to { transform: translateY(430%); }
}

@keyframes buzz 
{
    70% 
    {
        opacity: 0.80;
    }
}
@keyframes swirl 
{
    70% 
    {
        transform: translate(-50%, -60%);
    }
}
@keyframes move
{
    0%
    {
		background-position: 0% 00%;
        transform: rotateX(65deg) scaleX(1.2);
	}
    50%
    {
		background-position: 120% 00%;
	    transform: rotateX(69deg) scaleX(1.5);
	}
    100%
    {
		background-position: 0% 00%;
	    transform: rotateX(65deg) scaleX(1.2);
	}
}

#container-rowcolumn 
{
    border-radius: 5px;
    padding: 20px;
    z-index: 1;
}

.column 
{
    float: left;
    width: 50%;
    padding: 10px;
}

.row:after
{
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width: 800px)
{
    .column
    {
        width: 100%;
    }

    .container
    {
        overflow-y: auto;
    }
}

input[type=text], select, textarea 
{
    font-family: "Ubuntu";
    width: 90%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
  
input[type=submit] 
{
    font-family: "Ubuntu";
    background-color: purple;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover 
{
    background-color: darkorchid;
}

.list-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 10px;
    font-size: 100px;
}