/* Include roboto font */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');


footer {
    flex: 0 0 auto;
    padding: 10px;
    background-color: #4c545c;
    background: linear-gradient(180deg, #3e434b, #454c54, #3e434b);
    color: #FFFFFF;
    text-align: center;
}

html, body {
    height: 100%;
    margin: 0;
    background-color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    padding: 20px;
}

.logo {
    width: 30vw;
}

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

.title {
    font-size: 1.6vw;
}

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

    font-size: 1.2vw;
}