/* head nav starts from here */
nav{
    position: relative;
    width: 100%;
    height: 150px;
    display: flex;
    box-shadow: 0 0 8px black;
}
#navbar{
    background-color: black;
}
/* head nav ends here */

/* main starts from here */
main{
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: center;
    font-family: 'Roboto', sans-serif;
    align-items: center;
}
#contact-title{
    width: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: center;
    gap: 30px;
}
#contact-us{
    font-size: 50px;
}
#contact-desc{
    text-align: center;
    font-size: 14px;
}
#contact-title>a{
    color: rgb(0, 0, 0);
}
/* about us footer */
#footer-email-address>a{
    color: white;
    position: relative;
    margin-top: 80px !important;
  }