*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    margin:0;
    background-color: #0F172A;
    color: #E2E8F0;
}
/*navigation*/
.nav{
    height: 3.75rem;
    background-color:#1E293B;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
#nav-content1{
    font-size: 1.5625rem;
    width: 60%;
    display: flex;
    justify-content: center;
}
.nav-content2{
    width: 40%;
    font-size: 1.5625rem;
    display: flex;
    justify-content: space-around;
}
a{
    text-decoration: none;
    color: #E2E8F0;
}

/*contact section*/

#contact-section{
    padding: 80px 20px;
    /*background-color: #f9f9f9;*/
    text-align: center;
}

.contact-title{
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: white
}

.contact-description{
    font-size: 1rem;
    color:lightgray;
    margin-bottom: 40px;
}

.contact-container{
    max-width: 600px;
    margin: auto;
}

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group{
    width: 100%;
}

.contact-input,
.contact-textarea{
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}

.contact-input:focus,
.contact-textarea:focus{
    border-color: #007bff;
}

.contact-button{
    padding: 12px;
    font-size: 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.contact-button:hover{
    background-color: #0056b3;
}

/*footer part*/
.footer{
    height: 70px;
    background-color: #0B1120;
    display: flex;
    justify-content: space-around;
    align-items: center;
}