* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* //////////////////  FONTS  //////////////////////// */

@font-face {
    font-family: 'Britany';
    src: url('Britany.ttf') format('truetype')
}

html {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem; /* Use relative font size */
    font-weight: 400;
    color: white;
    background: #000000;
}

body {
    margin: 0;
    overflow: hidden;
}

main .contactPage {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}


/* ////////////////// BODY SECTIONS //////////////////////// */

article {
    /* border: #828282 2px solid; */
    z-index: 1;
    height: 100vh;
    overflow: hidden;
}

.contact {
    height: 100vh;
}

/* ///////  SECTION HEADING, SUBHEADING, TEXT ///////////// */

.leftSide,
.rightSide {
    width: 50%;
}

.leftContent,
.rightContent {

    height: 80%;
}

/* custom HEADING TAGS css*/

h1{
    font-family: 'Poppins', sans-serif;
    font-size: 110px;
    font-weight: 100;
}
h2{
    font-family: 'Britany', sans-serif;
    font-size: 165px;
    color: #c3a186;
    font-weight: 200;

}
h3{
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
}

/* left side text css */

.sectionHeading{
    position: absolute;
    top: 30%;
    left: 8%;
}
.sectionSubHeading{
    position: absolute;
    top: 40%;
    left: 10%;
}

/* Css for table/Form */


.form {
    position: absolute;
    top: 50%;
    right: 0%;
    /* border: #c3a186 1px solid; */
    width: 30%;
    transform: translate(-20%, -50%) !important;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    display: block;
    text-align: right;
    color: #ffffff;
}

input[type="text"],
textarea {
    text-align: right;
    border: none;
    border-bottom: 1px solid #c3a186;
    background: transparent;
    color: #c3a186;
}

input[type="text"]:focus,
textarea:focus {
    outline: none;
    border-bottom: 2px solid #c3a186;
}

input::placeholder,
textarea::placeholder {
    color: #c3a186;
}

#submit {
    position: absolute;
    text-align: center;
    background-color: #c3a186;
    color: white;
    padding: 10px;
    cursor: pointer;
    border: none;
    width: 20%;
    bottom: 0%;
    right: 0%;
}

#submit:hover {
    background-color: white;
    color: #c3a186;
}

.response {
    display: none;

    position: absolute;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #c3a186;

    bottom: 50%;
    right: 10%;
}



/* ////////////////////////  CUSTOM CSS  //////////////// */

    /* custom SCROLL BAR css*/

        /* width */
        ::-webkit-scrollbar {
            width: 15px;
        }
        
        /* Track */
        ::-webkit-scrollbar-track {
            background: #626262; 
        }
        
        /* Handle */
        ::-webkit-scrollbar-thumb {
            background: #888; 
        }
        
        /* Handle on hover */
        ::-webkit-scrollbar-thumb:hover {
            background: #555; 
        }