html, body {
    font-size: 24px;
}

h1 {
    font-size: 2.2em;
    font-family: "Times New Roman", Times, serif;
    color:#022;
}

p {
    font-size: 0.7em;
}

.text-green {
    color: #01752B;
}

.text-red {
    color: #DB001A;
}

.background-green {
    background-color: #01752B;
}

.background-red {
    background-color: #DB001A;
}

header {
    height: 100vh;    
}

.bg-header-image {
    background-image: url('/assets/img/background.png');    
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.header-h1 {
    font-size: 3em;
    color: white;
    text-shadow: 0px 0px 10px rgba(150, 150, 150, 1);
}

@media only screen and (max-width: 769px) {
    .header-h1 {
        font-size: 2em;
    }
    h1 {
        font-size: 1.7em;        
    }
  }

.btn-success {
    border-radius: 0;    
    font-size: 0.8rem;
    padding: 0px;    
    border-color: #01752B;
    background-color: #01752B;     
}

footer {
    background-color: #01752B;
    color: white;    
}