
body {
    color: #19325c;    
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

a {
    color: #19325c;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

img {
    width: 100%;
    height: auto;
}

.page-content {
    background-color: rgba(25, 50, 92);
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    transition: background-color 2s ease-in-out;
    -webkit-transition: background-color 2s ease-in-out;
}

.page-content.loaded {
    background-color: transparent;
}

.container {    
    height: 100%;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: auto;
    height: 100%;    
    padding-right: 30px;
    padding-left: 30px;
    text-align: center;
}

.logo {
    max-width: 280px;
    width: 100%;
	margin-bottom: 20px;
}

/* #home_page .logo {
    width: 50%;
    margin: 0 40px 0 0;
} */

/* #info_page .content-wrapper {
    flex-direction: column;
} */

/* #info_page .logo {
    width: 100%;
	margin-bottom: 20px;
} */

.other-link {
    display: inline-block;
    position: absolute;
    text-align: center;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    font-size:80%;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    #home_page .logo {
        width: 100%;
        margin: 0;
    }
    .container { height:70%; }
    .other-link { bottom:20%; }
}