body {
    font-family: Helvetica, San-Serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

.container {
    display: flex;
    flex-direction: column;
}

.hero {
    flex-grow: 1;
    min-height: 50vh;
    color: white;
}

.hero h1 {
    font-weight: bold;
    font-size: xx-large;
    margin-bottom: 50px;
}

.hero .header-copy, form {
    line-height: 28px;
    margin-bottom: 40px;
    font-size: 20px;
}

.hero .header-copy b {
    font-weight: bolder;
}

.signup { 
    display: block;
    text-align: center;
    background: linear-gradient(to right, #f69049, #fdb34d);
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    padding: 16px;
    border-radius: 25px;
    font-weight: bold;
}

.button {
    font-size: 13px;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    letter-spacing: .03em;
    color: #fff;
    background-color: #aaa;
    box-sizing: border-box;
    height: 32px;
    line-height: 32px;
    padding: 0 18px;
    display: inline-block;
    margin: 0;
    transition: all 0.23s ease-in-out 0s;
}

input.email {
    font-family: "Open Sans","Helvetica Neue",Arial,Helvetica,Verdana,sans-serif;
    font-size: 15px;
    border: 1px solid #ABB0B2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #343434;
    background-color: #fff;
    box-sizing: border-box;
    height: 32px;
    padding: 0px 0.4em;
    display: inline-block;
    margin: 0;
    width: 350px;
    vertical-align: top;
}

.input-email {
    margin: 10px 0;
}


.hero-section {
    background: linear-gradient(to right,rgba(38, 168, 183, .7), rgba(80, 12, 232, .7)), url("../images/pexels-photo-703014.jpeg") center;
    background-size: cover;
    padding: 100px;
}
.features-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.feature {
    flex-grow: 1;
    padding: 10px;
}

footer {
    text-align: center;
    background-color: #403f3f;
    padding: 20px;
    color: white;
}

.feature h1 {
    text-align: center;
    color: #26a8b7;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 44px;
    letter-spacing: 0.7px;
    font-size: 24px;
}

.feature h1 span {
    color: #500CE8;
    font-weight: 600;
}

.feature p {
    margin-bottom: 20px;
    color: #5f5f5f;
    font-size: 20px;
}

.logo {
    width: 300px;
}

@media screen and (max-width: 768px) {
    .features-section {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 425px) {
    .logo {
        width: 200px;
    }

    .hero h1 {
        font-weight: bold;
        font-size: x-large;
        margin-bottom: 50px;
    }

    .hero-section {
        padding: 50px;
    }

    input.email {
        width: 198px;
    }

    .feature h1 {
        font-size: 20px;
    }
}