@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


.contact-section {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    background-color: rgba(88, 88, 88, 0.2);
}

.icon {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    transition: transform 0.3s ease;
}

.icon:hover {
    transform: scale(1.2);
}

.social-icons {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    text-decoration: none;
    color: aliceblue;
    padding: 10px;
    margin-bottom: 60px;
    transition: transform 0.2s;
}

.social-icons img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    padding: 10px;
}

.contact-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: aliceblue;
    width: 90%;
    margin-top: 40px;
    font-family: 'Montserrat', sans-serif;
    padding: 20px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-top: 75px;
    text-decoration: underline;
    text-align: center;
}

.contact-info p {
    font-size: 1.8rem;
    margin-top: 20px;
    text-align: center;
}

.contact-info h1 {
    font-size: 3.6rem;
}

.mainForm {
    color: aliceblue;
    display: flex;
    justify-content: space-around;
    padding: 10px;
}

.form-message {
    color: aliceblue;
    margin-top: 40px;
    border-radius: 20px;
    text-align: center;
}

.text-field {
    border-width: 0 0 2px 0;
    background: none;
    outline: none;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    color: aliceblue;
    padding: 5px;
    width: 45%;
}

.text-field:focus {
    border-color: #A074C8;
}

.message-text {
    border: solid 2px grey;
    border-radius: 10px;
    background: none;
    outline: none;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    color: aliceblue;
    padding: 10px;
    width: 95%;
    height: 400px;
}

.message-text:focus {
    border-color: #A074C8;
}

#form-submit {
    padding: 15px 50px;
    background-color: #A074C8;
    color: aliceblue;
    font-size: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
    margin-right: 25px;
    display: flex;
    justify-self: flex-end;
    box-shadow: none;
    border: none;
    margin-bottom: 50px;
}

#form-submit:hover {
    background-color: aliceblue;
    color: #72459c;
    transition: all 0.2s ease;
}

form {
    width: 50%;
}

@media (max-width: 768px) {
    .contact-info h1 {
        font-size: 2.5rem;
    }

    .mainForm {
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding: 10px;
        gap: 30px;
    }

    form {
        width: 90%;
    }

    .text-field {
        width: 80%;
    }

    .message-text {
        width: 80%;
    }

    .form-message {
        width: 100%;
    }

    #form-submit {
        justify-self: center;
        margin-left: 20px;
    }

    .contact-info h2 {
        font-size: clamp(10px, 1rem, 100px);
        width: 90%;
    }

    .social-icons img {
        width: 50px;
        height: 50px;
}
}


.yt { filter: invert(23%) sepia(93%) saturate(7494%) hue-rotate(357deg) brightness(92%) contrast(115%); }
.tw { filter: invert(48%) sepia(93%) saturate(2472%) hue-rotate(176deg) brightness(96%) contrast(91%); }
.dc { filter: invert(57%) sepia(12%) saturate(749%) hue-rotate(195deg) brightness(93%) contrast(89%); }
.li { filter: invert(33%) sepia(99%) saturate(855%) hue-rotate(179deg) brightness(92%) contrast(93%); }