:root {
    --background: #07294A;
    --primary-color-button: #0160AD;
    --primary-color-text: #323232;
    --secondary-text: #F6F6F6;
    --secondary-background: #FAFAFA;
    --secondary-color-button: #7C7C7C;
}

body, html {
    height: 100%;
    background-color: var(--background);
    color: var(--primary-color-text);
    font-family: 'Roboto', sans-serif;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.container-logo {
    padding-top: 56px;
}

.container-main {
    height: calc(100vh - 128px);
}