@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&display=swap');

:root {
    --color-purple: #3e0e2f;
    --color-white: white;
    --color-text: #7b175c;
}


.home-image {
    width: 600px;
}


.header-text {
    /* font-weight: 700; */
    margin-left: 70px;
}


.home-name {
    font-size: 50px;
    font-weight: bold;

}

.home-position {
    background: linear-gradient(90deg, rgba(31, 4, 22, 1) 0%, rgba(198, 54, 153, 1) 62%, rgba(220, 178, 207, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-weight: bold;
    padding-left: 70px;
}

.home-p {
    padding-left: 70px;
    font-size: 15px;
    color: #505052;
    margin-top: 30px;
}

.home-icon-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: absolute;
    /* left: 10px; */
    top: 27%;
}

.home-icon-section a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background-color: var(--color-purple);
    border-radius: 100px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.home-icon-section a i {
    font-size: 15px;
    /* color: var(--color-purple); */
    transition: 0.3s;
}

.home-icon-section a:hover {
    background-color: var(--color-white);
    color: var(--color-purple);
    border: 2px solid var(--color-purple);
}

@media (max-width: 480px) {
    .home-name {
        font-size: 29px;
        margin-top: -100px;
    }
}

@media (max-width: 991px) {
    .home-name {
        font-size: 28px;
        margin-top: -30px;
    }
    .header-text {
        margin-left: 0px;
    }

    .home-image {
        z-index: 1;
        width: 100%;
    }

    .home-position {
        padding-left: 50px;
    }

    .home-p {
        text-align: justify;
        padding-left: 50px;
    }

    .home-icon-section {
        top: 15%;
    }
}