/*
    orange text: #e54b1e
    darker orange text: #CC3205
    black background: #000 (true black) 
    font family: adelle
*/

@import url('https://fonts.googleapis.com/css?family=Merriweather');

body {
    font-family: 'Merriweather', serif;
}

a, a:hover, a:visited, a:focus {
    color: #e54b1e;
}

h1 {
    color: #CC3205;
}

.large-header {
    background-image: url('./images/background-header.jpg');
    background-size: cover;
	background-repeat: no-repeat;
    border-bottom: solid 2px #e54b1e;
    margin-bottom: 2rem;
}

.large-header #header-text {
    padding-top: 3rem;
}

.large-header img {
    width: 200px;
}

#copiedHeaderText {
    margin-bottom: 2rem;
}

#listSubscriptions > label {
    display: block;
    font-weight: 700;
    margin: 1rem 0;
}

@media (max-width: 480px) {
    .large-header img {
        width: 140px;
    }
    #copiedHeaderText h1 {
        font-size: 2.2rem;
    }
    #copiedHeaderText h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .custom-block {
        width: 100%;
        display: block;
    }
}

.btn-primary {
    background-color: #e54b1e;
    border-color: #CC3205;
}

.btn-primary:active, .btn-primary[disabled]:hover, .btn-primary:hover, .btn-primary:focus {
    background-color: #CC3205;
    border-color: #CC3205;
}

.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus, .open>.dropdown-toggle.btn-primary:hover {
    background-color: #CC3205;
    border-color: #CC3205;
}

.disclaimer-text {
    margin-top: 2rem;
}