
#content{
    padding-top: 70px;
    min-height: 900px;

    display: flex;
    justify-content: center;
    align-items: center;
}

#contact-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#kontaktujte{
    font-size: calc(var(--font-size) * 1.5);
    font-weight: 500;
    color: var(--color2);
    margin-bottom: 10px;

}

#kontaktujte-sub{
    font-size: calc(var(--font-size) * 1.4);
    font-weight: 500;
    color: var(--color4);
    margin-bottom: 30px;
    font-family: "Patrick Hand SC";
    text-align: center;
}




#contact-block{
    max-width: 800px;
    width: 100%;
    height: 450px;
    

    background-color: var(--color3);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: var(--box-shadow2);

}

#contacts{
    background-color: rgb(255, 255, 255);
    width: 50%;
    height: 100%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 50px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contacts-items{
    font-size: calc(var(--font-size) * 1);
    color: var(--color2);
    box-shadow: var(--box-shadow1);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;

    border-radius: 10px;
 
    padding: 5px 15px;

}

#contacts-mail{
    margin: 40px 0;
}


#form{
    /* max-width: 800px; */
    width: 100%;
    height: 100%;

    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.form-part{
    margin: 15px 0;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.input-form{
    background-color: var(--color1);
    color: var(--color2);
    font-size: calc(var(--font-size) * 1);

    border: none;
    border-radius: 5px;
    width: 100%;
    height: 35px;
    padding: 5px 15px;
    box-shadow: var(--box-shadow1);

}

#message-area{
    background-color: var(--color1);
    color: var(--color2);
    border: none;
    border-radius: 5px;
    width: 100%;
    min-height: 50px;
    max-height: 200px;
    padding: 5px 15px;
    font-size: calc(var(--font-size) * 1);
    resize: vertical;
    box-shadow: var(--box-shadow1);

}

#button-form{
    box-shadow: var(--box-shadow1);

    background-color: var(--color1);
    color: var(--color2);
    border: none;
    border-radius: 5px;
    width: 100%;
    padding: 5px 15px;
    font-size: calc(var(--font-size) * 1);
    font-weight: 500;
    cursor: pointer;
    margin: 15px 0;

}


@media screen and (max-width: 900px) {
    #contact-block{
        flex-direction: column;
        height: 550px;

    }

    #contacts{
        flex-direction: row;
        width: 100%;
        padding: 10px;
        justify-content: center;
        align-items: center;

        border-radius: 10px;
    
    }
    #contacts-mail{
        margin: 0px 50px;
    }
    
}

@media screen and (max-width: 600px) {
    #contacts{
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding-left: 20px;
    }
    #contacts-mail{
        margin: 20px 0px;

    }
    #contact-block{
        flex-direction: column;
        height: 620px;

    }

  
}