#main-section{
    text-align: center;
}

#title-heading{
    font-size: 96px;
    margin: 0;
    margin-top: 100px;
}

#title-paragraph{
    font-size: 24px;
    margin: 0;
    margin-bottom: 50px;
}

#contact-form-section{
    background-color: #D9D9D9D9;
    padding: 60px;
    border-radius: 20px 90px 20px 90px;
    margin: 5%;
    height: auto;
}

form{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
    flex-wrap: wrap;
}

input[type="text"], input[type="email"]{
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 60px;
    width: 50%  ;
}

label{
    font-size: 40px;
    font-weight: bold;
}

textarea{
    padding: 30px;
    font-size: 18px;
    border: none;
    border-radius: 60px;
    width: 50%;
    height: 300px;
    margin-bottom: 10px;
    font-size: 25px;
    text-align: center;
}

p.error{
    color: red;
    font-size: 22px;
    margin: 0;
    margin-bottom: 10px;
}

textarea:focus, input[type="text"]:focus, input[type="email"]:focus{
    outline: none;
    box-shadow: 0 0 5px #000000;
}

textarea::placeholder{
    padding: 15px;
    font-size: 30px;
}

input[type="submit"]{
    background-color: #000000;
    color: white;
    font-size: 24px;
    padding: 15px 50px;
    text-decoration: none;
    border-radius: 90px;
    transition: background-color 0.3s ease;
    border: none;
}

input[type="submit"]:hover{
    background-color: #333333;
}
