/* Google fonts */
body {
    font-family: 'Poiret One', sans-serif;
    background-color: #1c1c1c;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Title Text Styling */
.AboutUsTitle, 
.ContactUsTitle {
    text-align: center;
    color: #00aaff;
    font-size: 2.5em;
    margin-top: 20px;
}

/* About Us Paragraph*/
.MainParagraph { /*for the div itself*/
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #2c2c2c;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.MainParagraph p { /*for the text inside*/
    font-size: 1.1em;
    margin: 20px 0;
    text-align: justify;
}

/* Contact Us Form Styling */
.ContactForm {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #2c2c2c;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ContactForm label {
    font-size: 1.1em;
    color: #00aaff;
}

.ContactForm input,
.ContactForm textarea {
    width: 98%;
    padding: 10px;
    margin-top: 5px;
    font-size: 1em;
    border: 1px solid #00aaff;
    border-radius: 5px;
    background-color: #333;
    color: #ffffff;
}

.ContactForm input:focus,
.ContactForm textarea:focus {
    border-color: #66ccff;
    outline: none;
}

.ContactForm textarea {
    resize: vertical;
    min-height: 100px;
}

.ContactForm button {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    color: #ffffff;
    background-color: #00aaff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ContactForm button:hover {
    background-color: #0088cc;
}
