/* Global CSS variables */
:root {
    --spacing-company: 3rem;
    --font-weight: 400;
    --border-radius: 0;
}
  
/* Typography */
h2,
h3,
hgroup> :last-child {
    font-weight: 200;
}

small {
    color: var(--muted-color);
}

/* Header */
.hero {
    background-color: #078791;
    /* background-image: url("../images/national-cancer-institute-KMvoHcB-w5g-unsplash.jpg"); */
    background-position: center;
    background-size: cover;
    color: white;
}
.hero h1 {
    color: white;
}
  
header {
    padding: var(--spacing-company) 0;
}
  
header hgroup p {
    color: white;
    margin-top: 20px;
    font-weight: normal !important;
}
  
header hgroup p a {
    color: white !important;
    text-decoration-color: white;
}
  
header hgroup {
    margin-bottom: var(--spacing-company);
}
button {
    background: none;
    border: 1px solid white;
}
  
header p {
    color: white !important;
}
header p a {
    color: white !important;
    text-decoration-color: white;
}