body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 10px 10px 0 10px;
    background: url('bg.png') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
    color: #fff;
    font-size: 1.1em;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-style: normal;
}
a {
    color: #fff;
}
.uppercase {
    text-transform: uppercase;
}
.coming-soon {
    letter-spacing: .5em;
    position: relative;
}

.coming-soon::before,
.coming-soon::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #fff;
    top: 50%;
    transform: translateY(-50%);
}

.coming-soon::before {
    left: -40px;
}

.coming-soon::after {
    right: -30px;
}
.page { 
    margin: 0 auto;
    padding-top: 5vh;
    max-width: 400px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    line-height: 1.5em;
}
.footer {
    display: flex;
}
.social {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}
.social a {
    margin: 14px 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.social a img {
    width: 16px;
    margin-right: 6px;
}
img {
    max-width: 100%;
}