.contactArea {
    width: 100%;
    height: 100%;
    font-family: var(--fontOne);
    position: relative;
}

.areaIntroC {
    padding: 25px 30px;
}

.areaIntroC>h2 {
    width: fit-content;
    background: -webkit-linear-gradient(-45deg, #ffffff, #AA9CFC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 23px;
    line-height: 1.27;
    margin-bottom: 30px;
}

.CButtonArea {
    width: fit-content;
    height: fit-content;
    padding: 7px;
    background-color: rgba(17, 10, 43, 0.8);
    border-radius: 3rem;
    box-shadow: inset 0 3px 1px #110A2B;
    white-space: nowrap;
    margin: 0 auto;
}

.CButtonArea>button {
    border-radius: 3rem;
    border: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 12px 25px;
    font-size: 110%;
    font-weight: 500;
    background: url('/assets/misc/grains.webp') center center/cover no-repeat, radial-gradient(circle at 0% -130%, #F6C4A0, #DE7B58 47%, #B2553F 80%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 5px #110A2B;
    cursor: pointer;
}

.CButtonArea>button>svg {
    width: 24px;
    height: 24px;
}

.CButtonArea>button>span {
    margin-bottom: -2px;
}

@media only screen and (max-width: 1280px) {
    .areaIntroC>h2 {
        font-size: 19px;
    }

    .CButtonArea>button {
        font-size: 90%;
    }

    .CButtonArea>button>svg {
        width: 19px;
        height: 19px;
    }
}

@media only screen and (max-width: 1080px) {
    .contactArea {
        height: 200px;
    }

    .areaIntroC>h2 {
        font-size: 23px;
    }

    .CButtonArea>button {
        font-size: 110%;
    }

    .CButtonArea>button>svg {
        width: 24px;
        height: 24px;
    }
}

@media only screen and (max-width: 768px) {
    .areaIntroC>h2 {
        font-size: 19px;
    }

    .CButtonArea>button {
        font-size: 90%;
    }

    .CButtonArea>button>svg {
        width: 19px;
        height: 19px;
    }
}

@media only screen and (max-width: 576px) {
    .contactArea {
        height: 200px;
    }
}