@page {
    size: A4;
    margin: 20mm;
}
:root {
    --primary-color: yellow;
    --secondary-color: orange;
}

html {
    background-color: black;
}
body {
    width: 210mm;
    min-height: 297mm;
    margin: 0 auto;
    padding: 0mm;
    font-family: "Helvetica", Arial, sans-serif;
    font-size: 12pt;
    line-height: 1.5;
    color: #222;
    background: #fff;
}

header {
    width: 100%;
    background-color: #29292b;
    margin-bottom: 20px;
    margin-top: 0px;
    max-height: 50mm;
    padding-top: 7mm;
}

#name-and-title {
    margin-left: 7mm;
}

header h1 {
    width: auto;
    margin-top: 0;
    margin-bottom: 0px;
    color: white;
}

header h2 {
    margin-top: 0px;
    color: var(--secondary-color);
    border: none;
}

#profile-img {
    right: 5%;
    top: 0%;
    position: absolute;
}

#contacts {
    width: 100%;
    height: 100%;
    position: relative;
    font-weight: 500;
}

#contact {
    min-height: 8mm;
    color: white;
    background-color: black;
}
#contact-interior {
    margin-left: 8.5mm;
    padding-top: 1mm;
}
#profile-img img {
    object-fit: cover;
    width: 35mm;
    height: 35mm;
    border-radius: 20%;
    border: solid 2px white;
    filter: drop-shadow(3px 3px 10px #252526);
    right: 0mm;
}

main {
    display: flex;
    flex-direction: row;
}

#right-column {
    min-width: 30%;
}
#left-column {
    min-width: 60%;
}

h1, h2 {
    margin: 1mm;
    font-weight: bold;
    color: #333;
}

h1 {
    font-size: 24pt;
    margin-bottom: 5mm;
}

h3 {
    margin-top: 0mm;
    margin-bottom: 0mm;
    margin-left: 0.8mm;
}

h2 {
    font-size: 14pt;
    margin-top: 1mm;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.2mm;
}

a {
    text-decoration: none;
    color: white;
}

.section {
    margin-bottom: 6mm;
    padding-left: 7mm;
    padding-right: 7mm;
}

p {
    margin-top: 0px;
    margin-bottom: 0mm;
    margin-left: 1mm;
}

ul {
    margin: 2mm 0 3mm 5mm;
    padding: 0;
}