@charset "UTF-8";
/* CSS Document */


/*@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300|Roboto:100,300,400,700');*/
/*@import url('https://fonts.googleapis.com/css?family=Playfair+Display:300,400,500,800|Merriweather:700|Roboto:100,300,400,500,700&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    margin: 0;
    line-height: 1.3em;
}

p {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    margin: 0;
    margin: 8px 0 25;
}

banner {
    display: block;
    width: 90%;
    height: auto;
    padding: 5%;
    margin: 0;
}

banner > h1 {
    width: 60%;
}

banner > p {
    line-height: 25px;
    width: 60%;
    margin-bottom: 60px;
}

banner > p > a {
    color: #0081FF;
}

banner > a {
    margin: 40px 15px 0 0;
    line-height: 25px;
    padding: 12px 25px;
    border: solid 1px black;
    border-radius: 5px;
    color: black;
}

banner > a:hover {
    border-color: #0081FF;
    color: #0081FF;
}

banner > a > img {
    display: inline-block;
    height: 15px;
    width: auto;
    margin-right: 8px;
    align-content: center;
}

.title-subtitle {
    display: block;
    margin: 0;
    padding: 8% 8% 0;
}

#thumbs-up {
    font-size: 75px;
    margin-bottom: 20px;
}

form {
    display: block;
    margin: 0 8% 20%;
    padding: 0;
}

form > input {
    display: block;
    margin: 0;
    margin-bottom: 15px;
    width: 100%;
    height: 40px;
    padding: 0 12px;
    -webkit-appearance: none;
    border: none;
    background: none;
    border-radius: 17.5px;
    background-color: #F4F4F4;
    font-weight: 700;
    font-size: 15px;
}

form > input:focus,
form > textarea:focus {
    color: white;
    background-color: #0081FF;
    caret-color: #FFBC21;
}

form > input:focus::placeholder,
form > textarea:focus::placeholder {
    color: rgba(255, 255, 255, 0.5)
}

form > textarea {
    display: block;
    margin: 0;
    margin-bottom: 25px;
    width: 100%;
    height: 30%;
    padding: 12px 12px;
    -webkit-appearance: none;
    border: none;
    background: none;
    border-radius: 17.5px;
    background-color: #F4F4F4;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    
}

form > button {
    display: block;
    margin: 0;
    padding: 0;
    width: 50%;
    height: 50px;
    background: none;
    border: none;
    background-color: #0081FF;;
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    -webkit-appearance: none;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    word-spacing: 10;
}

form > button:hover {
    background-color: black;
}

@media screen and (max-width: 870px) {
    
    banner {
        width: 84%;
        padding: 5% 8%;
        margin-bottom: 30px;
    }

    banner > h1 {
        width: 100%;
    }

    banner > p {
        width: 100%;
    }

}


