The problem is when the screen size decreases and the three unordered lists are aligned—one for work experience and one for education. The education section doesn't align with the work experience because the text is longer, and I'm using justify-content: space-around. I don't want to use space-between because it creates too much space in the middle, and flex: 1 takes too long to align. How can I solve this?
.info { display: flex; color: #FFFFFF; flex-direction: column; align-items: flex-start; justify-content: space-between; margin-top: 40px; gap: 12px;}.personal { display: flex; flex-direction: column; justify-content: space-around; text-indent: 12px; gap: 6px;}.info ul { display: flex; list-style-type: none;}.info ul li { font-weight: 400;}.experience { color: #282726; background-color: #D6CAB0;}.personal-experience { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: space-around; gap: 24px;}
<section class="experience"><h1>Experience & Education</h1><div class="personal-experience"><div class="work-experience"><div class="info"><h2>SOFTWARE ENGINEER</h2><ul class="personal"><li>MABUHAY INCORPORATED</li><li>(NOVEMBER 2020 - APRIL 2024)</li></ul></div><div class="info"><h2>FRONT END DEVELOPER</h2><ul class="personal"><li>NARRA INCORPORATED</li><li>(DECEMBER 2019 - NOVEMBER 2020)</li></ul></div></div><div class="education"><div class="info"><h2>BACHELOR DEGREE - BSCS</h2><ul class="personal"><li>YEAR 2015 - 2019</li><li>SCHOOL: UNIVERSIDAD DE SAN JUAN</li><li>ADDRESS: CANLAUN LAGAYAN CITY FINLAND</li></ul></div></div></div></section>