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

body {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#090b0b+0,2e2e2c+100 */
    background: #090b0b; /* Old browsers */
    background: -moz-linear-gradient(left,  #090b0b 0%, #2e2e2c 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #090b0b 0%,#2e2e2c 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #090b0b 0%,#2e2e2c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#090b0b', endColorstr='#2e2e2c',GradientType=1 ); /* IE6-9 */
}

body p {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-top: 20px;
    color: white;
}

body h2 {
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 40px;
    color: white;
}

body h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: white;
}

body label {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: white;
}

.label-font {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: white;
} 

.heading {
    text-align: center;
    color: white;
}

.subheading {
    text-align: center;
    color: white;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.container-fluid {
    background-image: url("/img/header-klassikot.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 33%;
    padding-bottom: 40px;
    margin-bottom: 60px; /* Margin bottom by footer height */
}

.container {
    padding-left: 15%;
    padding-right: 15%;
}

.form-group {
    vertical-align: middle;
}

.table {
    color: white;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px; /* Set the fixed height of the footer here */
    line-height: 60px; /* Vertically center the text there */
    background-color: #f5f5f5;
}

@media (min-width: 450px) and (max-width: 979px) {
    .container-fluid  {
        background-image:url('/img/header-klassikot-tablet.png');
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center top;
        padding-top: 55%;
    }

    .container {
        padding-left: 10%;
        padding-right: 10%;
    }
}  
    
@media (max-width: 450px) {
    body h2 {
        font-family: 'Lato', sans-serif;
        font-weight: 700;
        font-size: 22px;
        color: white;
    }

    .container-fluid {
        background-image:url('/img/header-klassikot-mobile.png');
        padding-top: 95%;
    }

    .container {
        padding-left: 3%;
        padding-right: 3%;
    }

    .table {
        font-size: small;
    }
}  