body
{
    background-color: #292826;
    text-align: center;
}

.wrapper
{
    overflow-x: hidden;
}

.heading-div
{
    height: 200px;
}

.heading
{
    margin-top: 100px;
    color: #f9D342;
    font-family: 'Press Start 2P', cursive;
    font-size: calc(30px + (60 - 20) * ((100vw - 300px) / (1600 - 300))) !important;
    line-height: 5rem;
}

button
{
    height: 70px;
    width: 300px;
    border-radius: 20px;
    border: none;
    margin: 50px auto;
    font-size: 23px;
    font-family: 'Press Start 2P', cursive;
    background-color: #f9D342;
}

/* Sweep to Right Effect */
.hvr-sweep-to-right
{
    border-radius: 20px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hvr-sweep-to-right:before
{
    border-radius: 20px;
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F9B208;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active
{
    color: white;
    border-radius: 20px;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before
{
    border-radius: 20px;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* Sweep to left Effect */
.hvr-sweep-to-left
{
    border-radius: 20px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hvr-sweep-to-left:before
{
    border-radius: 20px;
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F9B208;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-sweep-to-left:hover, .hvr-sweep-to-left:focus, .hvr-sweep-to-left:active
{
    border-radius: 20px;
    color: white;
}
.hvr-sweep-to-left:hover:before, .hvr-sweep-to-left:focus:before, .hvr-sweep-to-left:active:before
{
    border-radius: 20px;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* Shutter-in horizontal effect */
.hvr-shutter-in-horizontal
{
    border-radius: 20px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    background: #F9B208;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hvr-shutter-in-horizontal:before
{
    border-radius: 20px;
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f9D342;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-shutter-in-horizontal:hover, .hvr-shutter-in-horizontal:focus, .hvr-shutter-in-horizontal:active
{
    border-radius: 20px;
    color: white;
}
.hvr-shutter-in-horizontal:hover:before, .hvr-shutter-in-horizontal:focus:before, .hvr-shutter-in-horizontal:active:before
{
    border-radius: 20px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}

.username-div
{
    margin: auto;
    width: 100%;
    height: 80px;
}

.username
{
    color: #F7A440;
    font-size: calc(35px + (50 - 35) * ((100vw - 300px) / (1600 - 300))) !important;
}