/* Reset default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(45deg, #008 10%, #031834 90%);
    min-height: 100vh;
}

.announceBar {
    background-color: #008;
    color: #fff;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.announceBar a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.announceBar a:hover {
    text-decoration: underline;
}

.announceBar a:active {
    color: #fff;
}

.announceBar a:visited {
    color: #fff;
}

.announceBar em {
    font-style: italic;
    font-weight: 800;
    font-size: 1.2em;
    color: goldenrod
}

/* Hero */
.hero {
    background: linear-gradient(45deg, #008 10%, #031834 90%);
    min-height: 500px;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    background: linear-gradient(135deg, #1a2942 35%, #2c3e50 65%);
    color: #fff;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .svg-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 75%;
    width: 100%;
    pointer-events: none;
    opacity: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero svg {
    height: 100%;
    width: auto;
    max-width: 100%;
    position: relative;
}

.hero .svg-icon {
    height: 100%;
    width: auto;
    max-width: 100%;
    position: relative;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80%;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.0em;
    margin: 0 0 0.5em 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.0em;
    margin: 0 0 2em 0;
    text-align: center;
}

.hero h3 {
    font-size: 1.5em;
    margin: 0 0 1em 0;
    text-align: center;
}