* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: sans-serif;
}

/* Body */
body {
    background-color: #EBF3E1;
}

/* Header */
.main-header {
    background-color: #7D9C8A;
    color: #FFFFFF;
}

.main-header h1 {
    font-size: 96px;
    font-weight: bold;
}

.main-header h2 {
    font-size: 24px;
}

/* Main content */
.main-content p {
    font-size: 20px;
    color: #3b4b3d;
    font-weight: bold;
}

.main-content .btn-custom {
    background-color: #8BAE7D;
    color: #FFFFFF;
}

.main-content .row {
    height: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.main-content .caption {
    margin-bottom: 30px;
}

.main-content #group-id-input {
    margin-bottom: 20px;
}

/* Summary */
.summary {
    background-color: #D8E6C3;
    color: #3b4b3d;
}

.summary h3 {
    font-size: 24px;
    font-weight: bold;
}

.summary h4 {
    width: 60%;
    font-size: 20px;
}

.summary .wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Footer */
.footer {
    background-color: #4A5E4D;
    color: #FFFFFF;
    padding-top: 10px;
    padding-bottom: 20px;
}

.footer a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer a:hover {
    color: #FFFFFF;
    text-decoration: none;
}

@media (min-width: 992px) {
    .footer {
        position: fixed;
        bottom: 0;
        width: 100%;
    }
}