@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

html {
    font-size: 16px;
}

@media (min-width: 768px) {
    html {
        font-size: 18px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    /*background-color: #0d4077;*/
    color: #343a40;
    /*    margin-bottom: 60px;*/
}

.content {
    flex: 1;
    /*padding: 20px;*/
}

.o-bg-red {
    background-color: #c7363d;
    /*background-color: #3B2667;*/
}

.o-bg-blue {
    background-color: #0d4077;
}

.o-color-red {
    color: #c7363d;
}

.o-color-blue {
    color: #0d4077;
}

.o-color-white {
    color: #FFFFFF;
}

.o-flag-bg-gradient {
    background: rgb(199,54,61);
    /*background: linear-gradient(90deg, rgba(199,54,61,1) 0%, rgba(13,64,119,1) 50%, rgba(255,255,255,1) 100%);*/
    background: linear-gradient(180deg, rgba(199,54,61,1) 0%, rgba(13,64,119,1) 50%, rgba(255,255,255,1) 100%);
}

.o-flag-color-gradient {
    background: -webkit-gradient(linear, left top, left bottom, from(#f00), to(#333));
    /*background: linear-gradient(90deg, rgba(199,54,61,1) 0%, rgba(13,64,119,1) 50%, rgba(255,255,255,1) 100%);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.o-pointer, .o-pointer-red, .o-pointer-blue {
    cursor: pointer;
}

    .o-pointer-red:hover {
        color: #c7363d;
    }

    .o-pointer-blue:hover {
        color: #0d4077;
    }
