@import url('https://fonts.googleapis.com/css?family=Poppins:100,300,400,500,700,900&display=swap');

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    height: 100%;
    width: 100%;
    
    font-family: 'Poppins', sans-serif;
    font-size: 16px;

    background: url(/assets/images/bg.jpg);
    background-size: cover;
    background-position: center;
}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 32px;
}

header .logo {
    width: 64px;
    height: 64px;
}

header ul {
    display: flex;
    justify-content: flex-end;
}

header ul li {
    list-style-type: none;
}

header .social {
    height: 32px;
    width: 32px;
    margin: 0 8px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80%;
    width: 100%;
}
.content span {
    color: #fff;
}

.msg {
    font-weight: 100;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}
.notifymsg {
    font-weight: 300;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0px;
    padding-top: 16px;
}

#mc_embed_signup_scroll {
    display: flex;
    flex-direction: row;
}


.email {
    border-radius: 5px;
    border: none;
    padding: 8px;
    width: 240px;
}
.button {
    border-radius: 5px;
    border: none;
    padding: 8px 16px;
    color: #FFF;;
    background-color: brown;
}

footer {
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
}

@media screen and (min-width: 320px) {
    .msg {
        font-size: 1.8rem;
    }
    .notifymsg {
        font-size: 0.76rem;
    }
    .email {
        width: 150px;
    }
    .services {
        font-size: 0.5rem;
        margin: 64px 64px 16px 64px;
    }
}

@media screen and (min-width: 768px) {
    .msg {
        font-size: 2.5rem;
    }
    .notifymsg {
        font-size: 1rem;
    }
    .email {
        width: 220px;
    }
    .services {
        font-size: 0.78rem;
        margin: 64px 64px 16px 64px;
    }
}

@media screen and (min-width: 1024px) {
    .msg {
        font-size: 4rem;
    }
    .services {
        font-size: 0.7rem;
        margin: 64px 64px 16px 64px;
    }

}
