#contact-page{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
}

.contact-wrapper{
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    display: flex;

}

section#contact-page h1{
    font-size: 3rem;
    font-family: "Arial Black";
    color: white;
}

.contact-container{
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.contact-image{
    max-width: 100px;
    height: auto;
    padding: 1rem;
}


.contact-text{
    font-size: 2rem;
    padding: 1rem;

}

@media screen and (max-width: 900px){
    .contact-wrapper{
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 760px) {
    .contact-text{
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 490px) {
    #contact-page{
        height: initial;
    }
    .contact-text{
        font-size: 1rem;
    }
    section#contact-page h1{
        font-size: 2rem;
    }
    .contact-container{
        flex-direction: column;
    }
    .contact-image{
        scale: 0.7;
    }
}
@media screen and (max-width: 340px) {
    #contact-page{
        height: initial;
    }
    .contact-text{
        font-size: 1rem;
    }
    section#contact-page h1{
        font-size: 2rem;
    }
    .contact-container{
        flex-direction: column;
    }
    .contact-image{
        scale: 0.6;
    }
}

@media screen and (min-height: 900px) and (min-width: 600px){
    #contact-page{
        height: initial;
    }
}


@media screen and (max-width: 900px) and (max-height: 600px){
    #contact-page{
        height: initial;
    }
}

@media screen and (max-width: 700px) and (max-height: 650px){
    #contact-page{
        height: initial;
    }
}

@media screen and (min-width: 400px) and (max-height: 400px){
    #contact-page{
        height: initial;
    }
}