body {
    margin: 0;
    padding: 0;
    font-family: 'Pavanam';
}
.upperPart {
    width:  100%;
    height: 100%;
}
.leftSideMenu {
    width: 20%;
    height: 100%;
    background-image: url("leftSideMenuBackground.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    font-size: 1vw;
    font-weight: bold;
    text-transform: uppercase;
}
.nameBoxAndList {
    width: 100%;
    height: 100%;
    padding-top: 10%;
    text-align: center;
    color: white;
}
.nameBoxAndList ul {
    list-style-type: none;
    margin-top: 35%;
    padding: 0;
}
.nameBoxAndList ul li {
    padding: 10px;
}
.logo {
    width: 40%;
    height: 20%;
}
a:link {
    text-decoration: none;
    color: white;
}
a:visited {
    text-decoration: none;
    color: white;
}
a:hover {
    font-size: 20px;
}   
.upperRightSide {
    width: 80%;
    height: 100%;
    margin-left: 20%;
}
.aboutMeBox {
    width: 65%;
    height: 90%;
    position: relative;
    left: 18%;
    top: 5%;
    font-size: 1.5vw;
}
.aboutMeBox p {
    font-size: 1.2vw;
}
.line-01 {
    margin-left: 0;
}
.photoAndTextFlexbox {
    display: flex;
    position: relative;
    top: 2%;
}
.photoAndTextFlexbox p {
    margin-left: 15%;
    text-align: justify;

}
.personalPhoto {
    width: 30%;
    height: 70%;
    background-color: black;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}
.textFlexbox {
    width: 80%;
    display: flex;
    flex-direction: column;
}
.textFlexbox ul {
    padding: 0;
    margin: 0;
    margin-left: 22%;
    margin-bottom: 5%;
}
.textFlexbox p {
    font-size: 1.2vw;
    padding-top: 0;
    margin-top: 0;
    padding: 0.1%;
}
@media screen and (max-width: 600px){
    .photoAndTextFlexbox {
        flex-direction: column;
    }
    .personalPhoto {
        width: 70%;
        height: 30%;
    }
}