:root{
    --p-color : #754EF9;
}
*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
header{
    width: 100vw;
    height: 100vh;
    display: flex;
}
#Left-header{
    width: 40%;
    height: 100%;
    background: var(--p-color);
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 5%;
}
#Left-header h2{
    font-family: Trebuchet MS;
    font-size: 3rem;
}
#Left-header h4{
    font-family: Open Sans;
}
h2,h4{
    color: white;
}
.Profile-pic{
    position: absolute;
    top: 50%;
    right: -9rem;
    transform: translateY(-50%);
    background: var(--p-color);
    padding: 1rem;
    border-radius: 50%;
    border: white solid 2rem;
    outline: var(--p-color) solid .5rem;
}
#Left-header img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
}
#Right-header{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#Right-header nav{
    align-self: flex-end;
    margin: 2rem;
}
#Right-header nav a{
    text-decoration: none;
    color: var(--p-color);
    font-family: Open Sans;
    margin: 0 1rem;
    padding: .3rem 1rem;
    transition: ease-in-out .2s;
}
#Right-header nav a:nth-child(3){
    background: var(--p-color);
    color: white;
    border-radius: 1rem;
    
}
#Right-header nav a:nth-child(1):hover,#Right-header nav a:nth-child(2):hover{
    color: black;
}
#Right-header nav a:nth-child(3):hover{
    scale: 50%;
    background:black;
}
#mywork{
    align-self: center;
    text-align: center;
    font-family: Open Sans;
    text-transform: capitalize;
}
#voice-intro{
    align-self: flex-end;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Open Sans;
    margin: 0 5%;
}
#voice-intro button{
    background: transparent;
    border: none;
    cursor: pointer;
}