* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.logo-image {
    width: 150px;
    height: 150px;
    background-image: url(images/mjx-game-media-logo.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.logo-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    margin-bottom: 12.5px;
}

.showcase {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #111;
    color: #fff;
    z-index: 2;
    transition: 1s ease;
}

.showcase.active {
    right: 300px;
}

.showcase header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle {
    position: relative;
    width: 60px;
    height: 60px;
    background: url(images/hamburger-menu.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    cursor: pointer;
}

.toggle.active {
    background: url(images/close-menu.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px;
}

.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a8;
    mix-blend-mode: luminosity;
}

.text {
    position: relative;
    z-index: 10;
}

.text h1 {
    font-size: 5em;
    line-height: 1em;
    font-weight: 800;
    text-transform: uppercase;
}

.text h2 {
    font-size: 4em;
    line-height: 1em;
    font-weight: 700;
    text-transform: uppercase;
}

p {
    font-size: 1.1em;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 20px 0;
    max-width: 700px;
}

.button {
    border-radius: 250px;
    width: 250px;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    font-weight: 700;
    background: #fff;
    padding: 5px 5px;
    text-decoration: none;
    color: #111;
    margin-top: 25px;
    margin-left: 0px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 1s;
}

#button {
    border-radius: 125px;
    border: none;
    width: 125px;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 0.7em;
    font-weight: 700;
    background: #fff;
    padding: 5px 5px;
    text-decoration: none;
    color: #111;
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: 0px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 1s;
}

#button:hover {
    opacity: 0.4;
    cursor: pointer;
}

.text a:hover {
    opacity: 0.4;
}

.social {
    margin-left: 10px;
}

.menu {
    background: rgb(0, 0, 0);
    border: #111;
    border-right-width: 3px;
    border-left-width: 3px;
    border-right-style: solid;
    border-left-style: solid;
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.menu ul {
    margin-top: 12.5px;
    position: relative;
    list-style: none;
}

.menu ul li a {
    text-transform: uppercase;
    text-decoration: none;
    font-size: 24px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.menu ul li a:hover {
    color: rgba(255, 255, 255, 0.685);
}

@media(max-width: 798px) {
    .showcase,
    .showcase header {
        padding: 40px;
    }
    .text h1 {
        font-size: 3em;
    }
    .text h2 {
        font-size: 2em;
    }
}