section.contact {
    margin: 50px auto;
    width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    .content {
        background-color: var(--color-primary);
        width: 800px;
        max-width: 100%;

        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        gap: 15px;

        .info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: start;

            margin: 50px 0;
            height: 400px;

            img {
                width: 270px;
            }

            p {
                color: white;

                margin-bottom: -5px;
            }
        }

        .contact-form {
            margin: 50px 0;
            height: 400px;

            max-width: 100%;

            display: flex;
            flex-direction: column;
            justify-content: center;

            h3 {
                color: white;  
                font-weight: bold;
                letter-spacing: 2px;

                text-align: center;
            }

            .same-line {
                display: flex;
                width: 100%;

                input {
                    width: 100%;
                }
            }

            input, textarea {
                margin: 5px;
                padding: 10px;
                border: none;
                border-radius: 5px;
            }

            button {
                border: none;
                border-radius: 100px;
                color: var(--color-primary);

                background-color: var(--color-bg);
                cursor: pointer;

                padding: 10px 30px;
                margin: 5px;

                
                align-self: flex-start;

                transition: all 0.3s ease;
            }

            button:hover {
                background-color: var(--color-bg-secondary);
                color: white;
            }

            textarea {
                resize: none;
                height: 100%;
            }
        }
    }
}

@media screen and (max-width: 800px) {
    section.contact {
        margin-bottom: 0;
        position: relative;

        .content {
            flex-direction: column;

            .info {
                height: 150px;
                margin-bottom: 0;
                margin-top: 70px;
            }

            .contact-form {
                h3 {
                    position: absolute;
                    top: 10px;
                    left: 0;
                    right: 0;
                }
            }
        }
    }
}