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

    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: 1140px;
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .header {
        position: relative;
        padding-top: 5rem;
        background: url(../images/announcement.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) !important;
        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 !important;
        display: none;
        position: absolute;
        right: 2%;
        padding: .5rem 2rem;
        color: #FFF;
        border-radius: 100px;
        background: rgba(255, 255, 255, 0.116) !important;
        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 !important;
        font-weight: 700;
        text-align: center;
        color: #FFF;
        animation: moveInLeft 600ms ease-in-out;
    }

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

    .issue-grid {
        padding: 0 2rem;
        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 {
        margin-top: 3rem;
        grid-area: left-section;
        animation: moveInDown 600ms ease-in-out;
    }

    .issue-grid__left--card {
        border-radius: 1rem;
        padding: 2rem;
        display: block;
        background: #1e1d22 !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
    }

    .issue-grid__left--card:not(:first-child) {
        margin-top: 3rem;
    }

    .issue-grid__left--card--decription {
        margin-top: 12px !important;
        font-size: 1.6rem;
        color: #FFF;
        margin-bottom: 0;
    }

    .issue-grid__left--card--decription p,
    h1,
    div,
    span,
    font {
        background-color: transparent !important;
        color: #FFF !important;
        font-family: 'Roboto', sans-serif !important;
        font-size: 1.6rem !important;
    }

    .issue-grid__left--card--decription a {
        color: #2196f3 !important;
        font-family: 'Roboto', sans-serif !important;
        font-size: 1.6rem !important;
    }

    .issue-grid__left--card--decription h1 {
        font-size: 2.5rem !important;
    }

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

    .footer {
        padding: 2rem 0rem 2rem 0rem;
        text-align: center;
        background-color: #222222;
        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);
    }

    @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;
    } */

    .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%;
        }
    }