
#container{
    scroll-snap-type: y mandatory;
    background-color: transparent;
    overflow-y: scroll;
    height: 100vh;
    width: 100vw,
}
#container section{
    display: block;
    scroll-snap-align: start;
    height: 100vh;
    width: 100%;
    position: relative;
    flex-shrink: 0;
    color:var(--main_text)
    
}
.background_shape{
    width: 100%;
    height: 100%;
    clip-path: polygon(100% 100%, 100% 50%, 0% 80%, 0% 100%);
    background: var(--static_background);
    /* z-index: -1; */
    position: absolute;

}

.name{
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(10vh);
    font-size: 50pt;
    color:var(--main_text);
}

.center_info{
    display: flex;
    align-items: center;
    justify-content: left;
    transform: translate(25vw,20vh);
    border-radius: 30pt;
    background-color: var(--static_main_containers);
    border-color: var(--static_sidebar);
    border-style: solid;
    width: 50vw;

    
}
.about_me_content{
    overflow-y: scroll;
}

.left_center_info{
    width: 30%;
    height: 90%;
    margin-left: 15px;
    margin-right: 5px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.right_center_info{
    width: 70%;
    height: 90%;
    margin-left: 5px;
    margin-right: 15px;
    color: var(--static_primary_text);
    

}

.profilePic{
    border-radius: 20pt;
    width:100%;
}

.resume_button{
    background-color: var(--static_blue);
    width:100%;
    height:30pt;
    border-radius: 10px;
    font-size: 20pt;
    color: var(--main_text);
    

}

.parent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 80%;
    height:80%;
    justify-content: center;
    margin: auto;
   
}
.search_grid{
    background-color: var(--main_containers);
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    color: var(--primary_text);
    display: flex;
    
    
}
.search_grid h1{
    /* display: flex; */
    /* justify-content: center; */
    margin: 10px auto;
    text-align: center;
    /* align-items: center; */
}
#prof_exp_1 { 
    grid-area: 1 / 1 / 3 / 2;

}
#prof_exp_2 { 
    grid-area: 1 / 2 / 2 / 3;
    /* background-color: blueviolet*/
    
}
#prof_exp_3 { 
    grid-area: 1 / 3 / 2 / 4; 
    /* background-color: chocolate; */
    
}
#prof_exp_4 { 
    grid-area: 2 / 3 / 3 / 4; 
    /* background-color: chartreuse; */
   
}
#prof_exp_5 { 
    grid-area: 2 / 2 / 3 / 3; 
    /* background-color: darkgreen; */
    
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}