h2 {
    margin-top: 100px;
    text-align: center;
}

.contact p {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 100px;
    padding-left: 30px;
    padding-right: 30px;
}

input[type=text], input[type=email], input[type=tel], input[type=url], input[type=password], input[type=date], input[type=time], input[type=number], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
  
input[type=submit] {
    background-color: #F1592A;
    color: #ffffff;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid;
}
  
.container {
    border-radius: 5px;
    background-color: #f3f3f3;
    padding: 20px;
    width: 700px;
    margin: auto;
    margin-bottom: 100px;
}

button {
    background-color: #F1592A;
    color: #ffffff;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid;
}

@media screen and (max-width: 750px) {

    p {
        padding-left: 30px;
        padding-right: 30px;
    }

}
  