body {
    background-color: #2AB7CA;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: stretch;
    align-items: center;
}

.text {
    order: 0;
    flex: 0 1 auto;
    align-self: auto;
    text-align: right;
}

.svg-button {
    display: inline-block;
    position: relative;
}

.svg-button:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.image {
    order: 0;
    flex: 0 1 auto;
    align-self: auto;
}

h1 {
    font-family: 'VT323', monospace;
    color: #FFFFFF;
    font-size: 100px;
}

.text > h1 {
    text-align: right;
}

.supermario {
    animation-duration: 3s;
    transition: ease-out;
    pointer-events: none;
}

p {
    color: #FFFFFF;
    font-family: 'Oxygen', sans-serif;
    font-size: 25px;
    margin: 100px;
}

.remodal-confirm {
    font-family: 'VT323', monospace;
    font-size: 30px;
}

.remodal > h2 {
    color: #000000;
    font-family: 'VT323', monospace;
    font-size: 40px;
    text-transform: uppercase;
}

.remodal > p {
    color: #000000;
    font-family: 'Oxygen', sans-serif;
    font-size: 25px;
    text-align: center;
}

.code {
    border: none;
    width: 5.9ch;
    color: #FFFFFF;
    background: 
    repeating-linear-gradient(90deg, 
        #FFFFFF 0, 
        #FFFFFF 1ch, 
        transparent 0, 
        transparent 1.5ch) 
      0 100%/100% 2px no-repeat;
    font: 20ch 'VT323', monospace;
    letter-spacing: .5ch;
}

.code:focus {
    outline: none;
}

.final {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.box {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.finalcontainer {
    background: url(../images/final.gif) bottom center no-repeat #4bb6cc;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


