
body {
    background: #000;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin: 0;
}

.bg {
    position: fixed;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    /* background-image: url('../media/img/robinhood_layout1.jpg'); */
    background-position: center;
    background-size: cover;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

.box {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}

div#logo {
    font-size: 40px;
    text-align: center;
    margin: 20px;
}

div#text {
    font-size: 18px;
    text-align: center;
}


@media (max-width: 640px) {
    div#logo {
        font-size: 30px;
    }

    div#text {
        font-size: 16px;
    }
}