@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");

    .header {
        position: relative;
        padding-top: 5rem;
        background: url(../images/history.png);
        background-position: center;
        height: 15rem;
    }

    .header__homepage {
        position: absolute;
        display: none;
        left: 2%;
        padding: .5rem 2rem;
        color: #FFF;
        background: rgba(255, 255, 255, 0.116);
        border-radius: 100px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
        font-size: 1.4rem;
        text-decoration: none;
        transition: all 400ms ease-in-out;
        animation: moveInLeft 600ms ease-in-out;
        font-weight: bold;
    }

    .header__homepage:hover {
        cursor: pointer;
        transform: scale(1.1);
    }

    .header__pageInfo {
        font-size: 1.4rem;
        display: none;
        position: absolute;
        right: 2%;
        padding: .5rem 2rem;
        color: #FFF;
        border-radius: 100px;
        background: rgba(255, 255, 255, 0.116);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
        animation: moveInRight 600ms ease-in-out;
    }

    .header__title {
        text-shadow: 0px 2px 13px black;
        overflow: hidden;
        font-size: 2.8rem;
        font-weight: 700;
        text-align: center;
        color: #FFF;
        animation: moveInLeft 600ms ease-in-out;
    }

    .header__date {
        font-size: 1.6rem;
        text-align: center;
        color: #FFF;
        text-shadow: 0px 2px 13px black;
        animation: moveInRight 600ms ease-in-out;
    }

    .issue-grid {
        column-gap: 40px;
        display: grid;
        margin-top: 3rem;
        grid-template-columns: 1fr;
        align-items: start;
        grid-template-areas: "right-section""left-section";
    }

    .issue-grid__left {
        grid-area: left-section;
        animation: moveInDown 600ms ease-in-out;
    }

    .issue-grid__left--searchBox {
        border: 4px solid #383838;
        width: 80%;
        background-color: #e6e6e6;
        outline: none;
        border-radius: 100px 0px 0px 100px;
        color: rgb(46, 46, 46);
        padding: 1.4rem 2rem;
        font-size: 1.8rem;
    }

    .issue-grid__left--month {
        margin-top: 3rem;
        color: #FFF;
        font-size: 1.6rem;
    }

    .issue-grid__left--link {
        text-decoration: none;
        transition: all 400ms ease-in-out;
    }

    /* .issue-grid__left--link :hover {
  transform: scale(1.05) translateY(-1px);
} */

    .issue-grid__left--link--container {
        width: 100%;
        margin-top: 2rem;
        border-radius: 2rem;
        background-color: #1e1d22;
        box-shadow: 0 0.5rem 1.5rem rgba(2, 2, 2, 0.4);
        transition: all 400ms ease-in-out;
    }

    .issue-grid__left--link--container:hover {
        transform: scale(1.05) translateY(-1px);
    }

    .issue-grid__left--link--container--category {
        width: 15%;
        text-align: center;
        color: #FFF;
        padding: .6rem;
        font-size: 1.4rem;
        border-radius: 100px;
        float: left;
    }

    .issue-grid__left--link--container--issueTitle {
        padding: .6rem;
        display: inline-block;
        margin-left: 1rem;
        color: #FFF;
        width: 80%;
        font-size: 1.4rem;
        font-weight: 700;
    }

    .issue-grid__left--link--container--issueDate {
        text-align: center;
        color: #FFF;
        font-size: 1.2rem;
        border-radius: 100px;
        display: inline-block;
        margin-left: .5rem;
        opacity: .5;
        font-style: italic;
    }

    .border-dashed {
        margin: 1rem 3rem;
        border-bottom: 1px dashed white;
        opacity: .2;
    }

    .category-maintenance {
        background-color: #dcac1b;
    }

    .category-issue {
        background-color: #d13943;
    }

    .category-announcement {
        background-color: #607D8B;
    }

    .footer {
        padding: 2rem 0rem 2rem 0rem;
        text-align: center;
        background-color: #141318;
        animation: moveInDown 700ms ease-in-out;
    }

    .footer a {
        text-align: center;
        color: #FFF;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        font-size: 1.8rem;
    }

    .footer a:hover {
        opacity: 0.52;
    }

    .footer p {
        font-size: 1.2rem;
        margin: 0;
        text-align: center;
        color: rgba(255, 255, 255, 0.308);
    }

    .noDataArea {
        text-align: center;
        color: rgb(44, 210, 216);
        padding: 2rem 0;
    }

    .noDataArea h1 {
        display: inline-block;
    }

    .noDataArea h1:nth-child(1) {
        padding-right: 6px;
        color: #bbbbbb;
        font-style: italic;
        font-size: 1.5rem;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    @keyframes moveInLeft {
        0% {
            opacity: 0;
            transform: translateX(-200px);
        }

        80% {
            transform: translateX(20px);
        }

        100% {
            opacity: 1;
            transform: translate(1);
        }
    }

    @keyframes moveInRight {
        0% {
            opacity: 0;
            transform: translateX(200px);
        }

        80% {
            transform: translateX(-20px);
        }

        100% {
            opacity: 1;
            transform: translate(1);
        }
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes moveInUp {
        0% {
            opacity: 0;
            transform: translateY(-200px);
        }

        100% {
            opacity: 1;
            transform: translate(1);
        }
    }

    @keyframes moveInDown {
        0% {
            opacity: 0;
            transform: translateY(200px);
        }

        100% {
            opacity: 1;
            transform: translate(1);
        }
    }

    *,
    *::after,
    *::before {
        margin: 0;
        padding: 0;
        box-sizing: inherit;
    }

    html {
        font-size: 62.5%;
        /* 1 rem = 10px*/
    }

    body {
        margin: 0;
        padding: 0;
        background-color: #141318;
        font-family: 'Roboto', sans-serif;
        box-sizing: border-box;
        font-weight: 400;
        line-height: 1.7;
    }

    .container {
        max-width: 800px;
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .issueUpdate__state--investigating {
        color: #e03451;
    }

    .issueUpdate__state--monitoring {
        color: #2196f3;
    }

    .issueUpdate__state--resolved {
        color: #40c573;
    }

    @media screen and (min-width: 1200px) {
        .issue-grid {
            column-gap: 40px;
            display: grid;
            grid-template-columns: 1fr;
        }

        .issue-grid__right {
            grid-area: auto;
        }

        .issue-grid__left {
            margin-top: 0;
            grid-area: auto;
        }

        .header__homepage {
            display: inline-block;
        }

        .header__pageInfo {
            display: inline-block;
        }
    }

    @media (max-width: 720px) {
        html {
            font-size: 52.5%;
        }

        .issue-grid__left--outerContainer {
            padding: 1.2rem;
        }

        .issue-grid__left--link--container {
            text-align: left;
        }

        .issue-grid__left--link--container--category {
            display: inline-block;
            width: 100%;
            text-align: center;
            float: none;
        }

        .issue-grid__left--link--container--issueTitle {
            margin: 1rem 0;
            width: 100%;
            display: block;
            text-align: center;
        }

        .issue-grid__left--link--container--issueDate {
            display: block;
            text-align: center;
            float: none;
            margin: 0 auto;
        }
    }
	
	
	
	
	    /* Style the search field */
form.search input[type=text] {
  padding: 15px;
  font-size: 17px;
  border: 1px solid grey;
  float: left;
  width: 80%;
  background: #f1f1f1;
}

/* Style the submit button */
form.search button {
  float: left;
  width: 20%;
  padding: 15px;
  background: #2196F3;
  color: white;
  font-size: 17px;
  border: 1px solid grey;
  border-left: none; /* Prevent double borders */
  cursor: pointer;
  border-radius: 0px 100px 100px 0px;
}

form.search button:hover {
  background: #0b7dda;
}

/* Clear floats */
form.search::after {
  content: "";
  clear: both;
  display: table;
}

.custom-pagination {
    background: #607d8b;
    text-align: center;
    margin-top: 10px;
    font-size: medium;
    color: white;
    margin-left: 40%;
    margin-right: 40%;
    border-radius: 5px;
}

.custom-pagination a:link {
    text-decoration: none;
}

.custom-pagination a:hover {
  text-decoration: underline;
}