@font-face {
    font-family: 'gotham-bold';
    src: url('../media/fonts/Gotham-Bold.eot?') format('eot');
    src: url('../media/fonts/Gotham-Bold.woff') format('woff'),
        url('../media/fonts/Gotham-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background: #000;
    color: white;
    font-family: 'gotham-bold', sans-serif;
    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;

    background-image: url('../media/blue_gradient_background-desktop.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 640px) {
    .wrapper {
        background-image: url('../media/blue_gradient_background-mobile.jpg');
    }
}


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

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box img {
    width: 69vw;
    max-width: 700px;
}

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;
    }
}