/* Fonts */
h1 { 
  font-family: 'Julius Sans One', sans-serif;
  color: #111; 
  font-weight: 300; 
  font-size: 1.2cm;
  transform: scale(1,1.15); 
  margin: 0.2cm 0;
  text-transform: uppercase;
}

h2 {
  font-family: 'Archivo Narrow', sans-serif;
  color: white;
  margin: 0.1cm 0;
}

h3 {
  font-family: 'Open Sans', sans-serif;
}

.jobPosition span, 
.projectName span {
  font-family: 'Source Sans Pro', sans-serif;
}

.smallText, 
.smallText span, 
.smallText p, 
.smallText a {
  font-family: 'Source Sans Pro', sans-serif;
  text-align: justify;
  font-size: 0.35cm;
}

/* Colors */
.leftPanel, 
.leftPanel a {
  color: #bebebe;
  text-decoration: none;
}

.white {
  color: white;
}

/* Layout */
* {
  box-sizing: border-box;
}

body {
  background: rgb(204,204,204);
  width: 21cm;
  min-height: 29.7cm;
  margin: 0 auto;
  overflow-y: auto;
}

page {
  background: white;
  display: block;
  margin: 0 auto;
  margin-bottom: 0.5cm;
  width: 21cm;
  min-height: 29.7cm;
  overflow: visible;
}

.container {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 100%;
}

.leftPanel {
  width: 27%;
  background-color: #484444;
  padding: 0.7cm;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.rightPanel {
  width: 73%;
  padding: 0.7cm;
  background: white;
  min-height: 100%;
}

.leftPanel img {
  width: 4cm;
  height: 4cm;
  margin-bottom: 0.7cm;
  border-radius: 50%;
  border: 0.15cm solid white;
  object-fit: cover;
}

.details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.item {
  padding: 0.7cm 0;
}

.bottomLineSeparator {
  border-bottom: 0.05cm solid white;
}

/* Skills & Languages */
.skill {
  display: flex;
  justify-content: space-between;
  margin: 0.2cm 0;
}

/* Timeline styling */
.workExperience>ul {
  list-style-type: none;
  padding-left: 0;
}

.workExperience>ul>li {
  position: relative;
  margin: 0;
  padding-bottom: 0.5cm;
  padding-left: 0.5cm;
}

.workExperience>ul>li:before {
  background-color: #b8abab;
  width: 0.05cm;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.05cm;
}

.workExperience>ul>li::after {
  content: '';
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='%23484444' cx='16' cy='16' r='10'/%3E%3C/svg%3E");
  background-size: contain;
  left: -0.09cm;
  top: 0;
  width: 0.35cm;
  height: 0.35cm;
}

/* Job positions */
.jobPosition {
  display: flex;
  justify-content: space-between;
}

/* Text styling */
.bolded {
  font-weight: bold;
}

.contactIcon {
  width: 0.5cm;
  text-align: center;
  margin-right: 0.3cm;
}

/* Printing styles */
@page {
  size: A4;
  margin: 0;
}

@media print {
  body, page {
    margin: 0;
    box-shadow: none;
    overflow: visible !important;
  }
  
  .container {
    min-height: 29.7cm;
  }
}