* {
    box-sizing: border-box;
}

:root {
    --main-bg-color: #222222;
    --base-bg-color: #111111;
    --text-color: #9d9d9d;
    --wstd-green: #28a07d;
    --wstd-yellow: #d5af14;
    --wstd-blue: #186da1;
    --wstd-red: #FF473D;
    --wstd-purple: #662042;
}

body {
    width: 95%;
    padding-left: 0%;
    padding-right: 0%;
    background-color: var(--main-bg-color);
    font-family: monospace;
    display: flex;
    flex-direction: column;
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5px 12px;
}

.p
{
    color: #7e7e7e;
    margin-bottom: 45px;
    font-size: 10px;
}

.base_item {
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    background: var(--base-bg-color);
    display: inline-flex;
    margin: 4px;
    padding: 5px 12px;
    border-radius: 20px;
}

.nav_bar {
    width: 90%;
    font-size: 12px;
    margin: auto;
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
}

.nav_wasted {
    text-decoration: none;
    background: var(--base-bg-color);
    display: inline-flex;
    margin: 4px;
    padding: 5px 12px;
}

.nav_wasted:hover {
    color: #000;
    background: var(--wstd-green);
}

.nav_releases {
    text-decoration: none;
    background: var(--base-bg-color);
    display: inline-flex;
    margin: 4px;
    padding: 5px 12px;
}
.nav_releases:hover {
    color: #000;
    background: var(--wstd-yellow);
}

.nav_software {
    text-decoration: none;
    background: var(--base-bg-color);
    display: inline-flex;
    margin: 4px;
    padding: 5px 12px;
}
.nav_software:hover {
    color: #000;
    background: var(--wstd-blue);
}

.nav_video {
    text-decoration: none;
    background: var(--base-bg-color);
    display: inline-flex;
    margin: 4px;
    padding: 5px 12px;
}
.nav_video:hover {
    color: #000;
    background: var(--wstd-purple);
}

.nav_more {
    text-decoration: none;
    background: var(--base-bg-color);
    display: inline-flex;
    margin: 4px;
    padding: 5px 12px;

}
.nav_more:hover {
    color: #000;
    background: var(--wstd-red);
}

.sale {
    width: 90%;
    font-size: 12px;
    margin: 4px;
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    background: var(--base-bg-color);
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 20px;
    float: left;
    clear: both;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.sale:hover {
    color: #000;
    background: var(--wstd-red);
}

.href
{
    text-decoration: none;
}

.ascii
{
    vertical-align: center;
    background: var(--base-bg-color);
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 4px;
    padding: 5px 12px;
    border-radius: 20px;
    color: var(--text-color);
    line-height: 1.1em;
    white-space: pre;
    text-align:left;
}


/* == root page == */
.root
{
    width: 90%;
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-evenly;
}

.rootcontainer
{
    width: 100%;
}

.roottext
{
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
    font-size: 10px;
    text-decoration: none;
    background: var(--base-bg-color);
    display: inline-flex;
    margin: 4px;
    padding: 5px 12px;
    border-radius: 20px;
}

.roottext:hover
{
    color: #000;
    background: var(--wstd-green);
    animation: pulse 2s infinite;
    /* filter: invert(90%); */
}

/* == all releases page == */
.releases
{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
    float: left;
    clear: both;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.releaselink
{
    min-width:222px;
    height: 240px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 10px;
    text-decoration: none;
    background: var(--base-bg-color);
    display: inline-flex;
    margin: 4px;
    padding: 15px 12px;
    border-radius: 20px;
}

.releaselink:hover
{
    color: #000;
    font-weight: 600;
    background: var(--wstd-green);
    animation: pulse 2s infinite;
}

/* == release page == */
.release
{
    column-count: 2;
    margin-top: 20px;
    margin-bottom: 40px;
    float: left;
    clear: both;
    display: flex;
    justify-content: space-evenly;
}

.releaseblock
{
    min-width:333px;
    max-width:444px;
    height: auto;
    background: var(--base-bg-color);
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 4px;
    padding: 5px 12px;
    border-radius: 20px;
}

.releasedata
{
    color: var(--text-color);
    font-weight: 600;
    font-size: 10px;
    text-decoration: none;
}

.releaselogo
{
    max-width:200px;
    max-height:200px;
    width: auto;
    height: auto;
    margin: 5px;
    border-radius: 15px;
    object-fit: cover;
    overflow: hidden;
}

.releaselogo img {
    width: 100%;
    border-radius: 15px;
    transition: 0.5s all ease-in-out;
}

.releaselogo:hover img {
    transform: scale(1.5);
}

.releasevideo
{
    height: 220px;
    width: 350px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 10px;
    text-decoration: none;
    background: var(--base-bg-color);
    display: inline-flex;
    margin: 4px;
    padding: 15px 12px;
    border-radius: 20px;
}

.releaseembed
{
    max-height:185px;
    max-width:330px;
    width: auto;
    height: auto;
    margin: 5px;
    border-radius: 15px;
    object-fit: cover;
    overflow: hidden;
}

.ytembed
{
    height: 185px;
    width: 330px;
}

.releasename
{
    text-align:right;
    width: 100px;
    margin: 4px;
}

.releasenfo
{
    color: var(--text-color);
    line-height: 1.1em;
    white-space: pre;
    text-align:left;
    margin: 4px;
    font-size: 7px;
    width: 333px;
    position: auto;
}

.WAV
{
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.WAV:hover
{
    color: #000;
    font-weight: 600;
    background: var(--wstd-blue);
}

.FLAC
{
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.FLAC:hover
{
    color: #000;
    font-weight: 600;
    background: var(--wstd-green);
}

.MP3-V0
{
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.MP3-V0:hover
{
    color: #000;
    font-weight: 600;
    background: var(--wstd-yellow);
}

/* == link styles == */
.basiclink
{
    color: var(--text-color);
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
}

.supportlink
{
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}

.bluelink:hover
{
    color: #000;
    font-weight: 600;
    background: var(--wstd-blue);
}

.greenlink:hover
{
    color: #000;
    font-weight: 600;
    background: var(--wstd-green);
}

.yellowlink:hover
{
    color: #000;
    font-weight: 600;
    background: var(--wstd-yellow);
}

.redlink:hover
{
    color: #000;
    font-weight: 600;
    background: var(--wstd-red);
}


/* == waste == */
.wastedimg
{
    filter: grey;
    -webkit-filter: grayscale(100%);
}

.wastedimg:hover
{
    filter: none;
    -webkit-filter: grayscale(0%);
}

.wastedaudiologo
{
    width: 70%;
}

.scroll
{
    font-size: 20px;
    margin: auto;
    text-align: center;
}

#monitor {
	background: #000;
	position: relative;
	border-top: 3px solid #888;
	margin: 5%;
	padding: 2% 2% 4% 2%;
	border-radius: 10px;
	border-bottom-left-radius: 50% 2%;
	border-bottom-right-radius: 50% 2%;
	transition: margin-right 1s;
}

#monitor:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 3%;
	left: 36%;
	height: .5%;
	width: 28%;
	background: #ddd;
	border-radius: 50%;
	box-shadow: 0 0 3px 0 white;
}

#monitorscreen {
	position: relative;
    background-color: #777;
	background-size: cover;
	background-position: top center;
	height: 0;
	padding-bottom: 56.25%;
	position: relative;
	overflow: hidden;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(40, 160, 125, 1);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

@media all and (min-width: 960px) {
	#monitor {
		-webkit-animation: tvflicker .2s infinite alternate;
		-moz-animation:    tvflicker .5s infinite alternate;
		-o-animation:      tvflicker .5s infinite alternate;
		animation:         tvflicker .5s infinite alternate;
	}

	@-webkit-keyframes tvflicker {
	  0%   { box-shadow: 0 0 100px 0 rgba(200,235,255,0.4); }
	  100% { box-shadow: 0 0 95px 0 rgba(200,230,255,0.45); }
	}
	@-moz-keyframes tvflicker {
	  0%   { box-shadow: 0 0 100px 0 rgba(225,235,255,0.4); }
	  100% { box-shadow: 0 0 60px 0 rgba(200,220,255,0.6); }
	}
	@-o-keyframes tvflicker {
	  0%   { box-shadow: 0 0 100px 0 rgba(225,235,255,0.4); }
	  100% { box-shadow: 0 0 60px 0 rgba(200,220,255,0.6); }
	}
	@keyframes tvflicker {
	  0%   { box-shadow: 0 0 100px 0 rgba(225,235,255,0.4); }
	  100% { box-shadow: 0 0 60px 0 rgba(200,220,255,0.6); }
	}
}

@media screen and (min-width: 600px) {

    body {
        padding-left: 5%;
        padding-right: 5%;
    }

    .roottext
    {
        font-size: 12px;
    }

    .nav_bar {
        font-size: 16px;
    }

    .sale {
        font-size: 16px;
    }

    .releaseblock
    {
        min-width:444px;
        max-width:666px;
    }

    .releasedata
    {
        font-size: 12px;
    }

    .releaselink
    {
        height: 260px;
        font-size: 12px;
        min-width:303px;
        margin: 5px;
    }

    .releasevideo
    {
        height: 280px;
        min-width:460px;
        font-size: 12px;
        margin: 5px;
    }

    .releaseembed
    {
        max-height:247px;
        max-width:440px;
        width: auto;
        height: auto;
        margin: 5px;
        border-radius: 15px;
        object-fit: cover;
        overflow: hidden;
    }

    .ytembed
    {
        height: 247px;
        width: 440px;
    }

    .releaselogo
    {
        /* display: block; */
        max-width:220px;
        max-height:220px;
    }

    .releasename
    {
        width: 120px;
    }

    .releasenfo
    {
        font-size: 9px;
        width: 444px;
    }

    .basiclink
    {
        font-size: 15px;
    }

    .supportlink
    {
        font-size: 18px;
    }

    .wastedaudiologo
    {
        width: 80%;
    }
}

@media screen and (min-width: 768px) {

    body {
        padding-left: 10%;
        padding-right: 10%;
    }

    .root
    {
        width: 100%;
    }

    .rootcontainer
    {
        width: 80%;
    }

    .roottext
    {
        font-size: 14px;
    }

    .nav_bar {
        font-size: 20px;
    }

    .sale {
        font-size: 20px;
    }

    .releaseblock
    {
        min-width:666px;
        max-width:800px;
    }

    .releasedata
    {
        font-size: 14px;
    }

    .releaselink
    {
        height: 260px;
        /* width: 454px; */
        min-width:333px;
        max-width:404px;
        margin: 6px;
        font-size: 14px;
    }

    .releasevideo
    {
        height: 350px;
        min-width: 580px;
        margin: 6px;
        font-size: 14px;
    }

    .releaseembed
    {
        max-height:315px;
        max-width:560px;
        width: auto;
        height: auto;
        margin: 5px;
        border-radius: 15px;
        object-fit: cover;
        overflow: hidden;
    }

    .ytembed
    {
        height: 315px;
        width: 560px;
    }

    .releasename
    {
        width: 200px;
    }

    .releasenfo
    {
        font-size: 12px;
        width: 555px;
    }

    .basiclink
    {
        font-size: 18px;
    }

    .supportlink
    {
        font-size: 22px;
    }

    .wastedaudiologo
    {
        width: 100%;
    }
}
