body.buttons {
    width: 100vw;
    height: 100vh;
    background-color: #000;
    padding: 0;
    margin: 0;
}

.button__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* //////////////////////////////////////////////////////////////////////////////////////////
BEGIN: Robots Choice Awards -- Button 
////////////////////////////////////////////////////////////////////////////////////////// */
.button {
    position: relative;
    display: flex;
}

.button__content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-grow: 1;
}

.corners__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    z-index: 0;
}

.corner__edge {
    border-width: 2px;
    border-color: #A453EA;
    border-style: none;
    width: 25%;
    height: 25%;
    position: absolute;
    box-shadow: 0px 0px 6.400000095367432px 0px #A453EA;
    z-index: 0;
    transition: transform 0.2s linear, border-color 0.2s linear;
    transform: scale(1);
}

.corner__edge--horizontal {
    height: 0%;
    border-top: solid #A453EA;
    transform-origin: 0% 0%;
}

.corner__edge--vertical {
    width: 0%;
    border-left: solid #A453EA;
    transform-origin: 0% 0%;
}

.corner__edge--top-right {
    position: absolute;
    top: 0%;
    right: 0%;
    transform-origin: 100% 0%;
}

.corner__edge--bottom-right {
    position: absolute;
    bottom: 0%;
    right: 0%;
    transform-origin: 100% 100%;
}

.corner__edge--bottom-left {
    position: absolute;
    bottom: 0%;
    left: 0%;
    transform-origin: 0% 100%;
}

.button__background {
    flex-grow: 1;
    margin: 2px;
    box-shadow: 0px 0px 6.400000095367432px 0px #A453EA;
    transition: margin 0.5s linear;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
}

.button__scanlines {
    flex-grow: 1;
    background: url(../images/scan-lines.png), rgba(164, 83, 234, 1);
    background-size: 200% 20%;
    background-blend-mode: multiply, normal;
    opacity: 0.29;
}
/* //////////////////////////////////////////////////////////////////////////////////////////
END: Robots Choice Awards -- Button 
////////////////////////////////////////////////////////////////////////////////////////// */

/* //////////////////////////////////////////////////////////////////////////////////////////
END: Robots Choice Awards -- Play 
////////////////////////////////////////////////////////////////////////////////////////// */
.button--play {
    width: 160px;
    height: 160px;
}

.play {
    display: block;
    width: 40%;
    height: auto;
    margin-left: 10px;
}

.play__fill-white {
    transition: fill 0.2s linear;
}
/* //////////////////////////////////////////////////////////////////////////////////////////
END: Robots Choice Awards -- Play 
////////////////////////////////////////////////////////////////////////////////////////// */

/*/////////////////////////////////////////
// BEGIN: Media Queries
/////////////////////////////////////////*/

/* BEGIN: Hovers
-----------------------------------*/
@media screen and (min-width: 961px) {

	.button:hover .corner__edge {
		border-color: #DAAEFF;
	}

	.button:hover .corner__edge--horizontal {
		transform: scaleY(2);
	}

	.button:hover .corner__edge--vertical {
		transform: scaleX(2);
	}

	.button:hover .play__fill-white {
		fill: rgba(217, 217, 217, 1);
	}
}

/* BEGIN: Hovers
-----------------------------------*/
@media screen and (max-width: 992px) {

	.button--play {
		width: 119px;
		height: 119px;
	}
}
	