html,
body,
.wrapper {
    height: 100%;
}

html,
body {
    padding: 0;
    margin: 0;
}

body {
    font: 1rem / 1.516 'Montserrat', Arial, sans-serif;
}

h1 {
    text-shadow: 2px 2px 2px #0000005c;
}

.wrapper {
    position: relative;
    background: url(images/bg.jpg) no-repeat center center / cover;
    // Dark overlay
    &:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(33, 33, 33, .25);
    }
}

header,
.content,
footer {
    position: absolute;
}

header,
footer {
    width: 100%;
}

header {
    top: 0;
    text-align: center;
}

.header__logo {
    max-width: 65px;
    fill: #fff;
}

.content {
    top: 50%;
    left: 50%;
    width: 80%;
    text-align: center;
    color: #fff;
    transform: translate(-50%, -50%);
    h1 {
        margin-top: 0;
    }
    form {
        margin: auto;
        display: table;
    }
    input {
        float: left;
        font-size: 16px;
        border: 1px solid #fff;
    }
    input[type=email] {
        padding: 12px;
        background: #fff;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }
    input[type=submit] {
        padding: 12px 24px;
        color: #fff;
        background: transparent;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        cursor: pointer;
        transition: all .235s ease-in-out;
        &:hover {
            color: #212121;
            background: #fff;
        }
    }
}

.countdown {
    margin: auto;
    display: table;
    font-size: 28px;
    font-weight: 500;
    >div {
        float: left;
        min-width: 80px;
    }
    span {
        position: relative;
        display: block;
        font-size: 16px;
        text-align: center;
        &:before {
            content: '';
            position: absolute;
            top: -2px;
            right: 0;
            left: 0;
            margin-right: auto;
            margin-left: auto;
            width: 20px;
            height: 1px;
            background: #fff;
        }
    }
}

footer {
    padding-bottom: 12px;
    bottom: 0;
}

.footer__links {
    text-align: center;
    list-style-type: none;
    li {
        display: inline-block;
        &:nth-of-type(n+2) {
            margin-left: 12px;
        }
    }
    a {
        padding: 8px 0;
        display: block;
        width: 41px;
        text-align: center;
        color: #fff;
        border: 1px solid;
        border-radius: 50%;
        transition: opacity .235s ease-in-out;
        &:hover {
            opacity: .5;
        }
    }
    .fa {
        vertical-align: middle;
        font-size: 21px;
    }
}