@import url('https://fonts.googleapis.com/css?family=Merriweather');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');
@import url('https://fonts.googleapis.com/css?family=Roboto');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Merriweather', sans-serif;
    font-size: 16px;
    color: #333;
}

.page {
    position: relative;
    width: 230mm;
    margin: 0 auto;
    padding: 5mm 8mm;
    background-color: #FFF;
}

h1,
h3 {
    color: #005c85;
}

header p {
    padding: 3mm 0 5mm;
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: justify;
}

.main {
    display: flex;
}

.main__left {
    width: 50mm;
}

.main__right {
    width: calc(100% - 50mm);
    margin-left: 6mm;
}

.section {
    margin-bottom: 1.2rem;
}

.section ul {
    list-style-type: none;
    font-size: 0.85rem;
}

.section ul li {
    margin: 0 0 1em 0;
}

.section ul li a {
    cursor: pointer;
    text-decoration: none;
}

.section h3 {
    margin-bottom: .5em;
    padding: .1em 0;
    border-bottom: .05rem solid #d5d6d6;
    color: #005c85;
}

.section__content {
    position: relative;
    font-size: 0.85rem;
}

.personal-info-title {
    color: #000;
    margin-bottom: .3em;
}

.timeline {
    display: flex;
    padding: 0 0 0 1.2em;

}

.timeline__date {
    flex-grow: 1;
    width: 18mm;
    line-height: 1.6;
    border-right: 1px dashed gray;
}

.timeline__content {
    width: calc(100% - 18mm);
    padding: .1em 0 2.2em 1.2em;


}

.timeline__content ul {
    padding: 0 0 0 35px;
    margin: 0 0 10px 0;
}

.timeline__content p {
    padding: 0 0 0 25px;
}

.main__right .section ul li {
    list-style-type: disc;
    margin: 0 0 1px 0;
}

.timeline__content h4 {
    font-weight: normal;
    font-size: 1rem;
    margin: 0 0 5px 0;
}

.portfolio__content {
    font-size: 14px;
}

.portfolio__content strong {
    font-size: 16px;
}

.portfolio__content ul {
    padding: 0 0 0 15px;
}

.main__right .section .portfolio__content li {
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: row;
    align-items: top;
}

.main__right .section .portfolio__content li img {
    margin-right: 2px;
    width: 56px;
    height: 56px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.main__right .section .portfolio__content li ul li {
    font-size: 12px;
    margin: 0;
}

table {
    border-collapse: collapse;
    width: 230mm;
    position: relative;
    margin: 0 auto;
    padding: 5mm 8mm;
    margin-bottom: 10px;    
}

th,
td {
    text-align: left;
    padding: 8px;
}

th {
    background-color: #666;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:nth-child(odd) {
    background-color: #e6e6e6;
}

h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
  }