
        /*body {
            background: #0f1923;
            font-family: "Muli";
        }*/

         .downloadbutton {
            display: flex;
            height: 100px;
            align-items: center;
            justify-content: center;
            flex-flow: row;
            margin: 30px;
        }

        .downloadbutton a {
            width: 100%;
            max-width: 200px;
            height: 54px;
            padding: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            color: #ff4655;
            text-align: center;
            text-transform: uppercase;
            text-decoration: none;
            box-shadow: 0 0 0 1px inset rgba(158, 158, 158, 1.0);
            position: relative;
            margin: 10px 50px;
        }

        .downloadbutton a:before {
            content: "";
            width: 1px;
            position: absolute;
            height: 8px;
            background: white;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        .downloadbutton a:after {
            content: "";
            width: 1px;
            position: absolute;
            height: 8px;
            background: white;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        .downloadbutton a p {
            margin: 0;
            height: 54px;
            line-height: 54px;
            box-sizing: border-box;
            z-index: 1;
            left: 0;
            width: 100%;
            position: relative;
            overflow: hidden;
            background: #f5f5f5;
        }

        .downloadbutton a p span.bg {
            left: -5%;
            position: absolute;
            background: #ff6600;
            width: 0;
            height: 100%;
            z-index: 3;
            transition: 0.3s ease-out all;
            transform: skewX(-10deg);
        }

        .downloadbutton a:hover span.bg {
            width: 110%;
        }

        .downloadbutton a p span.bg2 {
            left: -5%;
            position: absolute;
            background: #00695c;
            width: 0;
            height: 100%;
            z-index: 3;
            transition: 0.3s ease-out all;
            transform: skewX(-10deg);
        }

        .downloadbutton a:hover span.bg2 {
            width: 110%;
        }

        .downloadbutton a p span.base {
            box-sizing: border-box;
            position: absolute;
            z-index: 2;
            width: 100%;
            height: 100%;
            left: 0;
            border: 1px solid #ff4655;
        }

        .downloadbutton a p span.base:before {
            content: "";
            width: 2px;
            height: 2px;
            left: -1px;
            top: -1px;
            background: white;
            position: absolute;
            transition: 0.3s ease-out all;
        }

        .downloadbutton a p span.text {
            z-index: 4;
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
        }

        .downloadbutton a p span.text:after {
            content: "";
            width: 4px;
            height: 4px;
            right: 0;
            bottom: 0;
            background: white;
            position: absolute;
            transition: 0.3s ease-out all;
            z-index: 5;
        }

        .downloadbutton a:hover span.text:after {
            background: #ece8e1;
        }

        .downloadbutton a:hover {
            color: #ece8e1;
        }


        .white:hover>p {
            color: #ece8e1;
        }

        .white>p {
            background: #ece8e1;
            color: #0f1923;
        }

        .white p span.base {
            border: 1px solid transparent;
        }


        .transparent:hover>p {
            color: #ece8e1;
        }

        .transparent span.text {
            box-shadow: 0 0 0 1px#ece8e1;
        }


        .transparent>p {
            background: #0f1923;
            color: #ece8e1;
        }

        .transparent p span.base {
            border: 1px solid#ece8e1;
        }
