@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: white;
    white-space: nowrap;
    cursor: pointer;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.container div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 1s;
}

.rightbox {
    text-align: center;
    position: relative;
    top: 0;
    height: 100%;
    background: url(../img/space.png);
    background-size: cover;
    width: 50vw;
}

.rightbox a {
    font-size: 100px;
    text-transform: uppercase;
    font-weight: lighter;
}

.leftbox {
    text-align: center;
    position: relative;
    top: 0;
    height: 100%;
    width: 50vw;
    background: url(../img/moonlight.png);
    background-size: cover;
    background-position: center;
}

.leftbox a {
    font-size: 100px;
    text-transform: uppercase;
    font-weight: bolder;
}

@media screen and (min-width: 300px) and (max-width: 800px) {
    .rightbox a, .leftbox a {
        font-size: 25px;
    }

    .leftbox {
        background-position: right;
    }
}