*{
    margin: 0;
    padding: 0;
}
body{
    background-color: black;
}

.block{
    height: 95vh;
    
}
#firstPart{
    display: flex;
    flex-direction: row-reverse;
    
}
#firstLeft{
    width: 30%;
}
#firstRight{
    width: 70%;
}
#myImageHolder{
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: black;
    
}
#myImage{
    border-radius: 50%;

}
@font-face {
    font-family: LGC;
    src: url("../font/LGC.ttf");
}
  
#personalInfo{
    font-family: LGC;
    color: rgb(216, 216, 216);
    justify-content: center;
    /* align-items: center; */
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    padding: 0 50px;
}

#personalInfo>h1{
    font-size: 6vw;
}
.floating {  
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    /* margin-left: 30px;
    margin-top: 5px; */
}
 
@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 7px); }
    100%   { transform: translate(0, -0px); }    
}

@media only screen and (max-width: 500px) {
    #firstPart{
        display: flex;
        flex-direction: column;
    }
    #firstLeft{
        /* background-color: blue; */
        height: 40%;
        width: auto;
        padding: 0 21vw;
        padding-top: 13vh;
    }
    #firstRight{
        /* background-color: aqua; */
        font-size: 10px;
        width: 100%;
        height: 60%;
    }
    #personalInfo>h1{
        font-size: 14vw;
    }
    #personalInfo{
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        text-align: center;
    }
  }

