.contact{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-color: #0f172a;
    padding: 2rem 5%;
    filter: brightness(120%); 
}

.contact p{
     color: rgba(245, 245, 245,0.7);
     text-align: center;
}

.contact h2{
    color:whitesmoke;
    font-size: 2rem;
    text-align: center;
}

.contact-body{
    width: 100%;
    max-width: 50rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background-color: #0f172a;
    filter: brightness(120%);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 10px;
}

.contact-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-items: start;

}

.contact-info span{
    color: rgba(59, 130, 246);
}

.contact form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;

}

.contact form input{
    width: 100%;
    outline: none;
    height: 2.5rem;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #3b82f60d;
    background-color: #152032;
    filter: brightness(105%);
}

.contact form textarea{
    width: 100%;
    height: 7.5rem;
    outline: none;
    border-radius: 10px;
    padding:  1rem;
    font-size: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.05);
    background-color: rgba(21, 32, 50);
    filter: brightness(105%);
}

.contact form button{
    width: 100%;
    height: 2rem;
    background-color: rgba(59, 130, 246, 0.5);
    color: whitesmoke;
    border-radius: 5px;
    border: none;
}

@media(min-width:768px){
    .contact form{
        max-width: 35rem;
    }
}


@media(min-width:1024px){

    .contact-info{
        align-items: start;
    }
    .contact-body{
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}