@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    color: #242424;
}

@media print {
    .print-hidden {
        display: none !important;
    }
}

.get-pdf{
    position: fixed;
    top: 20px;
    z-index: 100;
    right: 20px;
    background-color: aliceblue;
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,.3);
    text-decoration: none;
    display: flex;
    line-height: 100%;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

body {
    margin: 0;
    padding: 0;
    background-color: #242424;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.cv-container {
    width: 210mm;
    height: 297mm;
    margin: 0 auto;
    /* Add any other necessary styling for your CV content */
    background-color: #fff;
    padding: 48px;
    box-sizing: border-box;
}

.header {
    background-color: rgb(121 249 94 / 25%);
    box-sizing: border-box;
    height: 200px;
    display: flex;
    gap: 24px;

}

.header__photo {
    height: 100%;
    aspect-ratio: 1 / 1;
    background-color: #242424;
    background-image: url(../img/1.jpg);
    background-position: center;
    background-size: cover;
}

.header__info {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.header__info-name {
    font-size: 32px;
    font-weight: 700;
}

.header__info-position {
    font-size: 24px;
    margin-top: px;
    color: #242424;
}

.header__info-contacts {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header__info-contacts>div {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.main {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    padding: 0 8px;
}

.main__sidebar {
    min-width: 200px;
    padding-right: 16px;
}

.sidebar__links {
    display: flex;
    align-items: flex-start;
    gap: 4px;

}

.sidebar__links svg {
    height: 19px;
}

.sidebar__list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar__list:first-child{
    margin-top: 0;
}

.list__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}

.main__content {
    padding-left: 16px;
}

.section {
    margin-top: 24px;
}

.section:first-child {
    margin-top: 0;
}

.section__title {
    font-size: 24px;
    font-weight: 700;
}

.section__text {
    font-size: 14px;
    line-height: 140%;
    margin-top: 8px;
}

.section__subtitle {
    margin-top: 24px;
    font-weight: 700;
}

.section__subtitle.non-margined{
    margin-top: 8px;
}

.section__list li {
    line-height: 140%;
    margin-top: 6px;
}

.section__list li:first-child{
    margin-top: 0;
}