html {
    font-family: 'Rooney-Sans', sans-serif;
}

body {
    max-width: 850px;
    margin: auto;
}

h1 {
    margin: 0;
}

h2 {
    margin: 0;
}

h3 {
    padding: 5px 0;
    margin: 10px 0;
    border-bottom: 1px solid #AAAAAA;
}

header {
    position: relative;
    height: 315px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #057777;
    margin-bottom: 25px;
}

.logo {
    margin-bottom: 50px;
}

.status-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 20px);
    height: 50px;
    background-color: rgba(0,0,0,.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    color: white;
}

.status {
    display: flex;
    align-items: center;
}

.no-incidents {
    color: #AAAAAA;
}

.past-incidents article {
    margin-bottom: 25px;
}

.past-incidents p, .future-incidents p, .current-incidents p {
    margin: 0;
}

main section {
    margin-bottom: 40px;
}

@media screen and (max-width: 870px) {
    .container {
        padding: 0 10px;
    }
}