html{
    background: #42275a;
    background: -webkit-linear-gradient(to right, #42275a, #734b6d);
    background: linear-gradient(to right, #42275a,#734b6d);
    position:relative;
}

.myContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
    /* padding-top: 1rem; */
    align-items: center;
    max-width: fit-content;
}

.myImage {
    border-radius: 50%;
    border: 0;
    margin-top: 1rem;
}

.myName {
    margin-top: 1rem;
    color: white;
    font-size: 40px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
}

.myJobProfile {
    margin-top: 0.5em;
    color: white;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    padding: 0.5em;
}

.myDescription {
    margin-top: 3rem;
    font-family: "Poppins";
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    max-width: 45rem;
    color: #dcdcdd;
    justify-content: space-evenly;
    word-spacing: 0.1px;
}

.myConnectText {
    margin-top: 2rem;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: white;
    text-align: center;
    word-spacing: 0.5px;
    letter-spacing: 0.2px;
}


/**
    Typewriter effect
*/

/* .myDescriptionTypewriter {
    position: relative;
    top: 50%;
    border-right: 2px solid rgba(255, 255, 255, .75);
    white-space: nowrap;
    overflow: hidden;
    font-size: 15px;
    animation: typewriter 4s steps(44) 1s 1 normal both, blinkTextCursor 4s steps(44) forwards;
}


@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 24em;
    }
}

@keyframes blinkTextCursor {
    from {
        border-right-color: rgba(255, 255, 255, .75);
    }
    to {
        border-right-color: transparent;
    }
} */


.myIconContainer {
    margin-bottom: 2em;
    margin-top: 0.5em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}


.myIcon {
    color: white;
    font-size: 10em;
    margin-top: 10px;
}

i {
    padding: 1em;
}


