body{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;

    position: fixed;
    height: 100%;
    width: 100%;
    margin: unset;
}

a{
    color: #000000;
    font-weight: 400;
    text-decoration: unset;
}

a:hover{
    color: #0b66c2;
}

ul{
    list-style-type: none;
}

p{
    margin: unset;
}

.homePage{
    position: absolute;
    display: flex;
    flex-direction: row;
    margin: auto;
    height: 100%;
    width: 100%;
    overflow: auto;
    top: 0;
    pointer-events: none;
}
.homePage_inner{
    position: relative;
    display: flex;
    top: 0;
    flex-wrap: wrap;
    max-width: 1024px;
    height: fit-content;
    margin: auto;
}

.leftGroup{
    display: inline-flex;
    width: 50%;
    height: fit-content;
    flex-direction: column;
    left: 0;
    position: relative;
    padding: 10px;
    box-sizing: border-box;
}

.introGroup{
    display: flex;
    flex-direction: column;
    max-width: 440px;
}

.resumeGroup{
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
}

.resumeInnerGroup{
    width: 240px;
}

.resumeTitle{
    font-size: 18px;
    color: #9e9e9e;
}

.resumeList{
    font-size: 11px;

    ul{
       padding: unset;
    }
}

.lightText{
    color: #9e9e9e;
}

.contactGroup{
    display: flex;
}

.rightGroup{
    display: inline-flex;
    height: fit-content;
    width: 50%;
    overflow-y: auto;
    padding: 10px;
    box-sizing: border-box;
    align-items: flex-start;
    justify-content: center;
}

.projectGroup_parent{
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}

.projectGroup{
    background-color: #bfbfbf;
    width: 150px;
    height: 150px;
    margin: 7px;
}

h1{
    font-weight: unset;
    margin: 13px 0;
    font-size: 20px;
    .grey{
        color: #7e7e7e;
    }
    .white{
        color: white;
    }
}

.text{
    display: block;
    font-size: 20px;
    padding-bottom: 10px;
}

.tjs_gui{
    display: none;
    pointer-events: all;
}