*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
::-webkit-scrollbar{
    width: .5rem;
}
::-webkit-scrollbar-track{
    background-color: transparent;
}

body{
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: whitesmoke;
}
main{
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
main>.left{
    background: rgb(255, 255, 76);
    padding: 1rem;
    width: 30%;
    height: 100%;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
main>.left legend{
    color: black;
    font-weight: 600;
    margin: 0.5rem 0;
}
main>.left fieldset{
    border: none;
    border-top: 1px dashed #000;
}
main>.left .form_rows{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.3rem 0;
}
main>.left input,textarea{
    padding: 0.5rem;
    outline: none;
    border-radius: .5rem;
    border: none;
    width:15rem;
    resize: none;
}
main>.left input:focus,textarea:focus{
    border-bottom: 1px solid red;
}
.btn{
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 0.5rem;
    background: black;
    color: yellow;
    font-weight: 600;
    cursor: pointer;
}

/* resume */
main>.right{
    background: whitesmoke;
    overflow-y: auto;
    padding: 1rem;
    width: 70%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}
main>.right>.block1{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: gray;
    width: 60vw;
}
main>.right>.block1>.Header{
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(132, 132, 255);
}
main>.right h2{
    width: 60vw;
    color: rgb(157, 157, 157);
    border-bottom: 1px solid #000;
}
main>.right>.block2,.block3,.block4,.block5{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 65vw;
}
main>.right>.block2>h3{
    font-size: 1.5rem;
    font-weight: 700;
}
main>.right>.block3>h3{
    width: 50ch;
}
main>.right>.block2>div{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.8rem;
}
main>.right>.block4>h3{
    font-size: 1.5rem;
    font-weight: 700;
}
main>.right>.block4>#project_description_resume{
    font-size: 1rem;
    font-weight: 200;
    width: 70ch;
    margin-top: 0.5rem;
}
main>.right>.block4>#link_resume{
    font-size: 1rem;
    font-weight: 200;
    color: rgb(132, 132, 255);
    cursor: pointer;
}
main>.right>.block5>#company_resume{
    font-size: 1rem;
    font-weight: 800;
    color: rgb(101, 101, 101);
}
main>.right>.block5>#company_description_resume{
    font-size: 1rem;
    font-weight: 200;
    width: 70ch;
    margin-top: 0.5rem;
}
main>.right>.block5>#designation_resume{
    font-size: 1.5rem;
    font-weight: 800;
}
main>.right>.block5>#duration_resume{
    font-size: 1rem;
    font-weight: 300;
    color: rgb(101, 101, 101);
}
.print{
    display: none;
}