body {
    background-color: #181819;
}

#content {
    font-family: "Raleway", sans-serif;
    color: white;
    text-align: center;
    margin-top: 30px;
    font-size: 30px;
}

h1 {
    font-family: "Raleway", sans-serif;
    color: #2fbdf4;
}

h4 {
    font-family: "Raleway", sans-serif;
    color: #2fbdf4;
}

/* SVG Styles */

#svgElement {
    width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* SVG Animation */

#ConeLight {
    fill: orange !important;
    animation: 0.6s infinite coneCycle;
}

@-webkit-keyframes coneCycle {
    50% {
        fill: white;
    }

    100% {
        fill: #d62209;
    }
}

@keyframes coneCycle {
    50% {
        fill: white;
    }

    100% {
        fill: #d62209;
    }
}

/* Crane Light Animation */

#CraneLight {
    fill: white;
    animation: 0.6s infinite coneCycle;
}

/* Crane Whinch Animation */

#Winch {
    transform: translateX(88px);
    animation: 4s linear infinite winchCycle;
    animation-direction: alternate-reverse;
}

@-webkit-keyframes winchCycle {
    0% {
        transform: translateX(88px);
    }

    100% {
        transform: translateX(4px);
    }
}

@keyframes winchCycle {
    0% {
        transform: translateX(88px);
    }

    100% {
        transform: translateX(4px);
    }
}

/* Paint Roller Animation */

#PaintRoller {
    animation: 0.7s ease infinite paintRoller;
    transform: translateY(-1px);
    animation-direction: alternate-reverse;
}

@-webkit-keyframes paintRoller {
    0% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(21px);
    }
}

@keyframes paintRoller {
    0% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(21px);
    }
}

a {
    color: white;
    text-decoration: none;
    transition: ease 0.2s;
}

a:hover {
    color: #2fbdf4;
}