
        * {
            margin: 0;
            padding: 0;
        }

        body {
            height: 100vh;
            min-height: 500px;
            width: 100%;
            position: relative;
            background: linear-gradient(#855A00, #241700) !important;
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            font-size: 14px;
            color: #fff;
        }

        header {
            position: absolute;
            left: 0;
            right: 0;
            top: 30px;
            width: 80px;
            margin: auto;
        }

        .headline {
            width: 200px;
            margin: auto;
            padding-bottom: 30px;
            text-align: center;
        }

        h1 {
            font-size: 1.5em;
            font-weight: 600;
        }

        h2 {
            font-size: 1.2em;
            font-weight: 400;
        }

        main {
            position: absolute;
            left: 0;
            right: 0;
            margin: auto;
            top: 140px;
            height: 50vh;
            width: 60%;
            min-width: 280px;
            color: rgba(255, 255, 255, .5);
            text-align: center;
            font-size: 1.5em;
        }
        main p {
            font-size: 14px;
        }

        fieldset {
            border: none;
        }

        input {
            background: none;
            color: rgba(255, 255, 255, .5);
            border: none;
            border-radius: 0;
            border-bottom: 1px solid #fff;
            text-align: center;
            font-size: 14px;
            width: 100%;
            margin-top: 15px;
        }

        input:hover,
        input:active,
        input:focus {
            color: #fff;
        }

        input:last-child {
            border: none;
            color: #fff;
        }

        footer {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 20px;
            width: 280px;
            margin: auto;
            text-align: center;
        }

        footer p {
            padding-bottom: 30px;
            color: rgba(255, 255, 255, .5);
        }

        footer a {
            color: #fff;
        }

        a.social {
            font-size: 1.5em;
        }

        footer a:hover,
        input:last-child:hover,
        footer a:active,
        input:last-child:active,
        footer a:focus,
        input:last-child:focus {
            cursor: pointer;
            color: darkred;
        }

        .pp {
            position: absolute;
            bottom: 0;
            left: 0;
            color: #000;
        }
        @media only screen and (max-height: 500px) {
            header {
                top: 10px;
            }

            footer {
                bottom: 10px;
            }

            main {
                top: 90px;
            }

            footer p {
                padding-bottom: 10px;
            }
        }