:root {
    --page-background: #000000;
    --text-color: rgb(237, 238, 240);
    --name-color: aliceblue;
    --heading-color: #80b3ff;
    --link-color: #80b3ff;
    --link-hover-color: #ffffff;
    --border-color: #303846;

}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--page-background);

    max-width: 900px;
    margin: 0 auto;
    padding: 32px 20px;

}

h1 {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--name-color);
}

h2 {
    font-size: 24px;
    margin-top: 0px;
    color: var(--heading-color);
}

li {
    margin-bottom: 12px;    
}

a {
    color: var(--link-color);
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}

a:hover,
a:focus-visible {
    color: var(--link-hover-color);
}

.role {
    font-size: 20px;
    color: var(--heading-color);
    margin-top: 0;
}

.resume-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.resume-section {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.general-section {
    margin-top: 32px;    
}

.skills-section {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.job {
    margin-top: 24px;
}

.job h3 {
    margin-bottom: 8px;
    color: var(--heading-color);
}

.profile {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 24px 0;
}

.profile-photo {
    width: 140px;
    height: 170px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}

.profile-text {
    flex: 1;
    min-width: 0;
}

.profile-text h1 {
    margin: 0 0 8px;
    overflow-wrap: anywhere;
}

.profile-text .role {
    margin: 0;
}

@media (max-width: 600px) {
    body {
        padding: 24px 16px;
    }

    h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    h2 {
        font-size: 20px;
    }

    .role {
        font-size: 18px;
    }
    .profile {
    gap: 16px;
    }

    .profile-photo {
        width: 80px;
        height: 80px;
    }    
}