body {
    background-color: #2c2c2c;
}

.jumbotron {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.vertical-center {
    min-height: 100%;
    min-height: 100vh;

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

.logo {
    padding: 10px;
    width: 100%;
    max-width: 363px;
    max-height: 533px;
    min-height: 100%;
    min-height: 100vh;

    background-image: url('../images/logos/laralabs_logo_big.png');
    background-position: center center;
    background-repeat: no-repeat;
}

.github {
    max-width: 74px;
    max-height: 74px;
    position: absolute;
    bottom: 100px;
    left: calc(50vw - 37px);
}

a svg:hover path {
    transition: fill .7s;
    fill: #fb503c;
}

@media screen and (max-width: 349px) and (max-height: 540px) {
    .logo {
        background-size: contain;
    }
}