body {
    //font-family: 'Comfortaa', cursive;
    //letter-spacing: 0.05em;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.1em;
    margin: 0;
    padding: 0;
    background-color: #f3f3f3;
}

div {
    display: block;
}

.container {
    position: absolute;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.container .spacer {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 10%;
    -ms-flex: 1 1 10%;
    flex: 1 1 10%;
    width: 100%;
}

.container .logo {
    background: url(logo.png);
    -webkit-flex: 1 1 50%;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    min-width: 300px;
    max-width: 700px;
    width: 93%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.container .write-us {
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 30%;
    -ms-flex: 1 1 30%;
    flex: 1 1 30%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.container .write-us-button {
    background-color: #2FA75F;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    padding: 1em 1.5em;
    border-radius: 8px;
    box-shadow: 0 3px 0 #007a30;
}

.container .write-us-button:hover {
    background-color: #11b351;
}

.container .write-us-button:active {
    background-color: #007a30;
}

.container .icon {
    width: 1.5em;
    position: relative;
    top: -.2em;
    height: 1em;
    display: inline-block;
    margin: 0 .3em;
    color: #fff;
    font-size: 20px;
}

.container .icon svg {
    position: absolute;
    width: 1.8em;
    height: 1.8em;
    fill: #fff;
}