body{
    margin:0px;
    
}
#title{
    position:relative;
    color:rgb(62, 62, 62);
    float:right;
    font-size:30px;
    width:300px; 
    height: 300px;
    padding:20px;
    margin-right:250px;
    margin-top: 200px;
    transform: translate(50%);

}
*{
    font-family: 'Verdana','Sans-serif';
}
#form{
    position:relative;
    max-width:700px;
    width:100%;
    top:-350px;
    margin-left:calc(50% - 200px);
    transform: translate(-50%);
}
.input{
    border:1px solid rgb(188, 188, 188);
    width:95%;
    height:46px;
    margin:10px;
    font-size: 17px;
}
.small_input{
    border:1px solid rgb(188, 188, 188);
    width:40%;
    height:45px;
    margin:10px;
    font-size: 17px;
}
.small_input p{
    display: inline;
}
fieldset{
    border:1px solid rgb(188, 188, 188);
    border-radius:5px;
    /*background-color: rgb(219, 216, 216);*/
    background-color: rgb(110, 201,115);
}
.error{
    color:red;
    font-size: 13px;
    display: none;
}
#send_form{
    position:relative;
    margin-top:6px;
    margin-right:12px;
    float:right;
    color:rgb(74, 74, 74);
    width:100px;
    height:50px;
    border:1px solid rgb(168, 168, 168);
    border-radius:5px;
    font-size: 17px;
}
textarea{
    border-radius: 8px;
    border:1px solid rgb(188, 188, 188);
    margin:10px;
    color:grey;
    font-size: 17px;
}
input[value]{
    color:grey;
}
@media screen and (max-width: 1110px){
    #title{
        position:static;
        width:100%;
        max-width:400px;
        margin-right:calc(50% - 220px);
        margin-left: calc(50% - 220px);
        transform:none;
        height: auto;
        text-align: center;
        margin-top:100px;
        margin-bottom:80px;
        float:none;
    }
    #form{
        position:static;
        float:none;
        margin:auto;
        top:none;
        margin-left:50%;
        margin-bottom:300px;
    }
}
@media screen and (max-width:500px){
    #form{
        width:100%;
    }
    #title{
        width:300px;
        font-size:20px;
        margin-bottom: 20px;
        margin-left:calc(50% - 170px);
        margin-right:calc(50% - 170px);
    }
}
#road_logo{
    position:absolute;
    z-index: -2;
    width:100%;
    height: auto;
    top:250px;
    left:-90px;
    transform: rotate(15deg);
}