body {
    font-family: "Montserrat";
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    text-align: center;
    font-weight: 300;
    overflow: hidden;
    height: 100%;
}

body::before {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('https://images.unsplash.com/photo-1519046798162-b7144ecf8f38?ixlib=rb-0.3.5&q=70&fm=jpg&crop=entropy&cs=tinysrgb&w=2000&fit=crop');
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    -moz-pointer-events: none;
    -webkit-pointer-events: none;
    -ms-pointer-events: none;
    pointer-events: none;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    background-position: 0% 0%, center;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll;
    background-color: #FFFFFF;
}

a {
    color: white;
}

#wrapper {
    -webkit-overflow-scrolling: touch;
    min-height: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 550px;
    padding: 0 25px;
}

#fullscreen {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

#alternativebutton {
    font-weight: 400;
}

h1 {
    font-size: 3.5em;
    font-weight: 600;
    text-align: center;
    margin-top: 0;
    line-height: 1em;
}

hr {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
    position: relative;
    padding: 0;
    border: 0;
    height: 0.5rem;
    line-height: 0.5rem;
    text-align: center;
}

hr::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    background-color: #FFFFFF;
    height: 1px;
}

p {
    font-weight: 400;
    text-align: center;
    line-height: 1.75em;
    font-size: 1.25em;
}

.button {
    font-family: "Montserrat";
    font-size: 1em;
    font-weight: 300;
    display: inline-block;
    background-color: white;
    color: black !important;
    background-color: transparent;
    color: white !important;
    box-shadow: 0px 0px 0px 2px white inset;
    text-decoration: none;
    padding: 12px 15px;
    text-shadow: none;
    border: none;
    margin: 20px 10px 0;
    border-radius: 100px;
}

.button#primary {
    background-color: white;
    color: black !important;
    font-weight: 500;
}

@media (max-width: 470px) {
    .button#primary {
        display: block;
        margin: 40px 0 5px;
    }

    #alternativebutton {
        display: block;
        padding: 10px;
    }

    h1 {
        font-size: 2em;
    }
}

.credit {
    margin-bottom: 10px;
}

.credit div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 16px 0;
}

.credit img {
    border-radius: 100px;
    height: 35px;
    margin-right: 5px;
}

.credit a {
    margin-left: 5px;
}

svg {
    fill: black;
    height: 1em;
    vertical-align: top;
}