/*-------------main---------------------------------------------*/

.main{
    padding: 150px 0;
    width: 40%;
    margin: 0 30%;
    font-size: 11px;
    font-family: Helvetica;
    font-weight: lighter;
}

.main p{
    font-size: 13px;
    line-height: 1.5;
    font-family: Helvetica;
    font-weight: lighter;
    margin-bottom: 60px;
}

input{
    width: 100%;
    margin: 20px 0;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #333;
    border-radius: 0%;
}

textarea{
    width: 100%;
    height: 250px;
    margin: 20px 0;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #333;
    border-radius: 0%;
}

button{
    float: right;
    padding: 10px;
    border: none;
    font-size: 11px;
    font-family: Helvetica;
    font-weight: lighter;
    background-color: #ccc;
}

@media screen and (max-width: 1024px){
    .main{
        padding: 150px 0;
        width: 70%;
        margin: 0 15%;
        font-size: 11px;
        font-family: Helvetica;
        font-weight: lighter;
    }
}

@media screen and (max-width: 599px){
    .main{
        padding: 120px 0;
        width: 80%;
        margin: 0 10%;
        font-size: 11px;
        font-family: Helvetica;
        font-weight: lighter;
    }

    textarea{
        height: 140px;
    }
}