
#contact{    
    position: relative;
}

#contact-background-img {    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    object-fit: cover;
    object-position: bottom;
    z-index: -2;
}

#contact-background-overlay{
    opacity: 0.7;
    width: 100%;
    height: 20rem;    
    background: linear-gradient(45deg, yellow, deeppink, violet, darkviolet, purple, deeppink);
    position: absolute; 
    bottom: -20rem;
    z-index: 2;
}

#contact-content-container{
    display: flex;
    justify-content: center;
}

#contact-content{
    width: 70%;
    margin: 1rem;
    padding: 1rem;
    font-size: large;
    line-height: 1.5;
    text-align: justify;
    box-shadow: 1px 1px 4px 0 black;
    display: flex;
    flex-direction: column;  
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}

.document-link{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.document-link a{
    text-decoration: none;
    color: var(--blue-color);
}
.document-link-items{
    display: flex;
    align-items: center;
}

.document-icon{
    width: 4rem;
}
.download-icon{
    width: 3rem;
}

.mail-form{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.mail-form textarea{
    width: 100%;
    height: 60%;
    font-size: large;
    color: var(--dark-text-color);
}
#message{
    margin: 1rem;
    padding: 1rem;
    resize: vertical;
}
.mail-form button{
    padding: 0.5rem;
    border-radius: 0.5rem;
    width: 30%;
    font-size: large;
    color: var(--navbar-color);
    background-color: var(--dark-blue-color);
    transition: 0.5s ease-in-out;
}
.mail-form button:hover{
    background-color: var(--blue-color);
    transform: scale(1.05);
}

.download-icon{    
    background-color: var(--dark-blue-color);
    border: 0.1rem solid var(--dark-blue-color);
    border-radius: 0.2rem;
    transform: scale(0.7);
    transition: 0.5s ease-in-out;
}
.download-icon:hover{
    background-color: var(--blue-color);
    border: 0.1rem solid var(--blue-color);
    transform: scale(0.75);
}

@media(max-width: 1023px){
    #contact-background-overlay{
        height: 10rem;
        bottom: -10rem;
    }
    
    #contact-content{
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .social-media-links{
        width: 100%;
        padding-right: 0;
        border-right: none;
        padding-bottom: 1rem;
        border-bottom: 0.1rem solid var(--light-text-color);
    }

    .mail-form textarea{        
        height: 10rem;
    }
}