body
{
    background: linear-gradient(270deg, #650058, #000000);
    background-size: 400% 400%;

    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
}

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.logo
{
    position: absolute;
    top: 10%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    width: 40%;
    z-index: 1;
}

@font-face
{
    font-family: "cyberfunk";
    src: url("Cyberfunk.ttf");
}

@font-face
{
    font-family: "wsh";
    src: url("wsh.otf");
}

.obtitle
{
    color: white;
    font-family: "cyberfunk";
    font-size: 8vw;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pad
{
    padding: 0.5em;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName { 
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.hopstack
{
    display: flex;
    align-items : stretch;
    justify-content: center;
    flex-wrap: wrap;
    height: 70%;
    left: 0;
    top: 30%;

}

.obutton
{
}

.xbutton
{
    height: 50%
}