            html, body {
                font-family: 'Lato', sans-serif;
                color: #1d1d1d;
                padding: 0px;
                margin: 0px;
            }

            body main {
                transition: all 250ms ease-in-out;
                filter: blur(0px);
            }

            .serif {
                font-family: 'Libre Caslon Display', serif;
            }

            .table {
                display: table;
                width: 100%;
            }

            .cell {
                display: table-cell;
                vertical-align: middle;
            }

            .hero {
                background-image: linear-gradient(to top, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
                color: white;
                background-attachment: fixed;
                position: relative;
            }

            .hero p {
                font-size: 18px;
                letter-spacing: 0.5px;
            }

            .hero .table {
                min-height: 100vh;
            }

            .hero .table .cell {
                padding-top: 40px;
                padding-bottom: 40px;
                text-align: center;
            }

            .hero h1 {
                font-size: 100px;
                line-height: 100px;
                letter-spacing: 10px;
                margin-top: 0px;
                margin-bottom: 20px;
            }

            .hero .button {
                margin-top: 20px;
            }

            .modal-title {
            	color: # 191919;
                margin-top: -30px;
                margin-bottom: 23px;
                padding-right: 100px;
                letter-spacing: 1px;
            }

            .button {
                cursor: pointer;
                height: 56px;
                line-height: 54px;
                padding-left: 24px;
                padding-right: 24px;
                box-sizing: border-box;
                display: inline-block;
                border-radius: 4px;
                text-align: center;
                text-decoration: none;
                outline: none;
                vertical-align: middle;
                font-weight: bold;
                transition: all 250ms ease-in-out;
                border: solid 1px #ff9a9e;
                font-size: 12px;
                letter-spacing: 2px;
                text-transform: uppercase;

                background-color: white;
                color: #ff9a9e;
            }

            .button.white {
                background-color: rgba(255,255,255,1);
                border: solid 1px white;
            }

            .button.hollow {
                background-color: rgba(255,255,255,0);
                color: white;
                border: solid 1px white;
            }

            .button.small {
                height: 44px;
                line-height: 42px;
                padding-left: 16px;
                padding-right: 16px;
            }

            .button.gradient {
                background-size: 200%;
                background-position: 0% 0%;
                background-image: linear-gradient(to right, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
                color: white;
                border: none;
                background-color: transparent;
                line-height: 56px;
            }

            .button.gradient.small {
                line-height: 44px;
            }

            .button.icon i {
                margin-right: 8px;
            }

            .modally-wrap.open:not(.last) {
                filter: blur(5px);
            }

            @media screen and (min-width: 960px) {
                .button:hover {
                    background-color: #ff9a9e;
                    color: white;
                }

                .button.white:hover {
                    background-color: rgba(255,255,255,0);
                    color: white;
                }

                .button.hollow:hover {
                    background-color: rgba(255,255,255,1);
                    color: #ff9a9e;
                }

                .button.gradient:hover {
                    background-color: transparent;
                    background-position: 50% 0px;
                }
            }

            @media screen and (max-width: 959px) {
                .hero h1 {
                    font-size: 50px;
                    line-height: 50px;
                    letter-spacing: 5px;
                }

                .button {
                    height: 44px;
                    line-height: 42px;
                    padding-left: 16px;
                    padding-right: 16px;
                }

                .button.gradient {
                    line-height: 44px;
                }
            }

            .modally .button-wrap {
                text-align: right;
            }

            .modally .button-wrap .button {
                margin-left: 16px;
            }

            .github-buttons {
                position: absolute;
                top: 0px;
                right: 0px;
                padding: 16px;
            }

            .down {
                text-align: center;
                position: absolute;
                bottom: 0px;
                left: 0px;
                width: 100%;
                line-height: 50px;
                font-size: 24px;
                opacity: 0.5;
                color: white;
            }

            .down span {
                display: inline-block;
            }

			.modally-wrap {
				z-index: 999999;
			}

			.modally-content p {
				margin-bottom: 15px !important;
			}

			.modally-content p a {
				color: #232323 !important;
			}